fix(deps): move async-attributes over to dev-dependencies

This commit is contained in:
Kat Marchán 2023-03-31 17:53:37 -07:00
parent 6a4e534215
commit b7c10ecaaf
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,6 @@ readme = "README.md"
categories = ["caching", "filesystem"]
[dependencies]
async-attributes = { version = "1.1.2", optional = true }
async-std = { version = "1.10.0", features = ["unstable"], optional = true }
digest = "0.10.6"
either = "1.6.1"
@ -38,6 +37,7 @@ tokio-stream = { version = "0.1.7", features = ["io-util"], optional = true }
walkdir = "2.3.2"
[dev-dependencies]
async-attributes = { version = "1.1.2" }
criterion = "0.4.0"
lazy_static = "1.4.0"
tokio = { version = "1.12.0", features = [
@ -53,6 +53,6 @@ name = "benchmarks"
harness = false
[features]
default = ["async-std", "async-attributes"]
default = ["async-std"]
link_to = []
tokio-runtime = ["tokio", "tokio-stream"]