Skip to content

Commit

Permalink
cargo: Remove unused dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
  • Loading branch information
dave-tucker committed Oct 5, 2022
1 parent 14ba644 commit ec2bd69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
4 changes: 0 additions & 4 deletions aya-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,4 @@ bindgen = "0.60"
clap = { version = "3", features = ["derive"] }
anyhow = "1"
thiserror = "1"
syn = "1"
quote = "1"
proc-macro2 = "1"
indexmap = "1.6"
tempfile = "3"
9 changes: 4 additions & 5 deletions aya/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,20 @@ bitflags = "1.2.1"
bytes = "1"
lazy_static = "1"
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 }
async-std = { version = "1.9.0", optional = true }
async-io = { version = "1.3", optional = true }
log = "0.4"

[dev-dependencies]
matches = "0.1.8"
futures = { version = "0.3.12", default-features = false, features = ["std"] }

[features]
default = []
async = ["futures"]
async = []
async_tokio = ["tokio", "async"]
async_std = ["async-std", "async-io", "async"]
async_std = ["async-io", "async"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
3 changes: 1 addition & 2 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ anyhow = "1"
syn = "1"
quote = "1"
proc-macro2 = "1"
indexmap = "1.6"
indoc = "1.0"
lazy_static = "1"
serde_json = "1"
serde_json = "1"

0 comments on commit ec2bd69

Please sign in to comment.