Skip to content

Commit

Permalink
Remove unnecessary deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 17, 2024
1 parent 0238c61 commit 269d45b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 11 deletions.
3 changes: 0 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ doc:
test *args:
cargo nextest run {{args}} --all-features

# Report unused dependencies:
udeps:
RUSTC_BOOTSTRAP=1 cargo udeps --all-targets

# Run all tests with nextest and cargo-llvm-cov
ci-test:
#!/bin/bash -eux
Expand Down
1 change: 0 additions & 1 deletion rc-zip-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ bzip2 = ["rc-zip/bzip2"]
zstd = ["rc-zip/zstd"]

[dev-dependencies]
chrono = "0.4.33"
clap = { version = "4.4.18", features = ["derive"] }
humansize = "2.1.3"
indicatif = "0.17.7"
Expand Down
1 change: 0 additions & 1 deletion rc-zip-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ bzip2 = ["rc-zip/bzip2"]
zstd = ["rc-zip/zstd"]

[dev-dependencies]
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "5.1.2", path = "../rc-zip", features = ["corpus"] }
tokio = { version = "1.35.1", features = ["rt", "macros"] }
5 changes: 3 additions & 2 deletions rc-zip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ oem_cp = "2.0.0"
thiserror = "1.0.56"
chardetng = "0.1.17"
num_enum = "0.7.2"
cfg-if = "1.0.0"
crc32fast = "1.3.2"
miniz_oxide = { version = "0.7.1", optional = true }
deflate64 = { version = "0.1.7", optional = true }
Expand All @@ -34,7 +33,9 @@ lzma-rs = { version = "0.3.0", optional = true, features = ["stream"] }
zstd = { version = "0.13.0", optional = true }
ownable = "0.6.2"
temp-dir = { version = "0.1.12", optional = true }
tracing-subscriber = { version = "0.3.18", optional = true, features = ["env-filter"] }
tracing-subscriber = { version = "0.3.18", optional = true, features = [
"env-filter",
] }

[features]
corpus = ["dep:temp-dir", "dep:bzip2", "dep:tracing-subscriber"]
Expand Down

0 comments on commit 269d45b

Please sign in to comment.