mirror of https://github.com/zkat/cacache-rs.git
fix(deps): only include rt-multi-threaded for tokio when running tests
This commit is contained in:
parent
953262c1d9
commit
526386ada8
10
Cargo.toml
10
Cargo.toml
|
|
@ -30,14 +30,20 @@ tokio = { version = "1.12.0", features = [
|
||||||
"fs",
|
"fs",
|
||||||
"io-util",
|
"io-util",
|
||||||
"macros",
|
"macros",
|
||||||
"rt",
|
"rt"
|
||||||
"rt-multi-thread",
|
|
||||||
], optional = true }
|
], optional = true }
|
||||||
tokio-stream = { version = "0.1.7", features = ["io-util"], optional = true }
|
tokio-stream = { version = "0.1.7", features = ["io-util"], optional = true }
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.4.0"
|
criterion = "0.4.0"
|
||||||
|
tokio = { version = "1.12.0", features = [
|
||||||
|
"fs",
|
||||||
|
"io-util",
|
||||||
|
"macros",
|
||||||
|
"rt",
|
||||||
|
"rt-multi-thread",
|
||||||
|
]}
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "benchmarks"
|
name = "benchmarks"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue