fixes
Some checks failed
Audit / audit (push) Has been cancelled
Deny / audit (push) Has been cancelled

This commit is contained in:
hinto.janai 2024-09-19 17:47:06 -04:00
parent 39cdb8eab1
commit 5ee10a3775
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View file

@ -785,6 +785,7 @@ dependencies = [
"thiserror",
"tokio",
"tokio-stream",
"tokio-test",
"tokio-util",
"tower",
"tracing",

View file

@ -32,8 +32,7 @@ borsh = { workspace = true, features = ["derive", "std"], optional = true }
cuprate-test-utils = { path = "../../test-utils" }
hex = { workspace = true, features = ["std"] }
# tokio-test = { workspace = true }
# tracing-subscriber = { workspace = true }
tokio-test = { workspace = true }
[lints]
workspace = true

View file

@ -61,6 +61,7 @@ cfg_if::cfg_if! {
// Used in `tests/`
if #[cfg(test)] {
use cuprate_test_utils as _;
use tokio_test as _;
use hex as _;
}
}