Merge pull request #406 from dave-tucker/unused-deps

cargo: Remove unused dependencies
pull/409/head
Michal Rostecki 2 years ago committed by GitHub
commit 57ab0d7978
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,8 +9,4 @@ bindgen = "0.60"
clap = { version = "3", features = ["derive"] } clap = { version = "3", features = ["derive"] }
anyhow = "1" anyhow = "1"
thiserror = "1" thiserror = "1"
syn = "1"
quote = "1"
proc-macro2 = "1"
indexmap = "1.6"
tempfile = "3" tempfile = "3"

@ -18,21 +18,20 @@ bitflags = "1.2.1"
bytes = "1" bytes = "1"
lazy_static = "1" lazy_static = "1"
parking_lot = { version = "0.12.0", features = ["send_guard"] } parking_lot = { version = "0.12.0", features = ["send_guard"] }
futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] }
tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true } tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true }
async-std = { version = "1.9.0", optional = true }
async-io = { version = "1.3", optional = true } async-io = { version = "1.3", optional = true }
log = "0.4" log = "0.4"
[dev-dependencies] [dev-dependencies]
matches = "0.1.8" matches = "0.1.8"
futures = { version = "0.3.12", default-features = false, features = ["std"] }
[features] [features]
default = [] default = []
async = ["futures"] async = []
async_tokio = ["tokio", "async"] async_tokio = ["tokio", "async"]
async_std = ["async-std", "async-io", "async"] async_std = ["async-io", "async"]
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]

@ -11,7 +11,6 @@ anyhow = "1"
syn = "1" syn = "1"
quote = "1" quote = "1"
proc-macro2 = "1" proc-macro2 = "1"
indexmap = "1.6"
indoc = "1.0" indoc = "1.0"
lazy_static = "1" lazy_static = "1"
serde_json = "1" serde_json = "1"
Loading…
Cancel
Save