Skip to content

Commit

Permalink
get rid of async compression
Browse files Browse the repository at this point in the history
  • Loading branch information
james-rms committed Sep 26, 2024
1 parent d8f5325 commit fbe28d0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ num_cpus = "1.13"
paste = "1.0"
thiserror = "1.0"
lz4 = { version = "1.27", optional = true }
async-compression = { version = "*", features = ["tokio"], optional = true }
tokio = { version = "1", features = ["io-util"] , optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand All @@ -34,9 +33,9 @@ zstd = { version = "0.11", features = ["zstdmt"], optional = true }

[features]
default = ["zstd", "lz4"]
zstd = ["dep:zstd", "async-compression/zstd"]
zstd = ["dep:zstd"]
lz4 = ["dep:lz4"]
tokio = ["dep:async-compression", "dep:tokio"]
tokio = [ "dep:tokio"]

[dev-dependencies]
anyhow = "1"
Expand Down

0 comments on commit fbe28d0

Please sign in to comment.