fix txpool tests

This commit is contained in:
Boog900 2024-10-29 22:48:55 +00:00
parent a2fdf94aed
commit 1d2a90281a
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -965,6 +965,7 @@ dependencies = [
"tempfile", "tempfile",
"thiserror", "thiserror",
"tokio", "tokio",
"tower 0.5.1",
] ]
[[package]] [[package]]

View file

@ -38,6 +38,7 @@ serde = { workspace = true, optional = true }
cuprate-test-utils = { workspace = true } cuprate-test-utils = { workspace = true }
tokio = { workspace = true } tokio = { workspace = true }
tower = { workspace = true }
tempfile = { workspace = true } tempfile = { workspace = true }
hex-literal = { workspace = true } hex-literal = { workspace = true }

View file

@ -25,4 +25,5 @@ mod test {
use hex_literal as _; use hex_literal as _;
use tempfile as _; use tempfile as _;
use tokio as _; use tokio as _;
use tower as _;
} }