Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
191 changes: 179 additions & 12 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions avro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ categories.workspace = true
documentation.workspace = true

[features]
default = ["futures", "sync"]
bzip = ["dep:bzip2"]
derive = ["dep:apache-avro-derive"]
snappy = ["dep:crc32fast", "dep:snap"]
xz = ["dep:liblzma"]
zstandard = ["dep:zstd"]
futures = []
sync = []

[lib]
# disable benchmarks to allow passing criterion arguments to `cargo bench`
Expand All @@ -57,6 +60,7 @@ apache-avro-derive = { default-features = false, version = "0.20.0", path = "../
bigdecimal = { default-features = false, version = "0.4.9", features = ["std", "serde"] }
bon = { default-features = false, version = "3.8.1" }
bzip2 = { version = "0.6.1", optional = true }
corosensei = { version = "0.3.1" }
crc32fast = { default-features = false, version = "1.5.0", optional = true }
digest = { default-features = false, version = "0.10.7", features = ["core-api"] }
miniz_oxide = { default-features = false, version = "0.8.9", features = ["with-alloc"] }
Expand All @@ -73,6 +77,9 @@ thiserror = { default-features = false, version = "2.0.17" }
uuid = { default-features = false, version = "1.18.1", features = ["serde", "std"] }
liblzma = { default-features = false, version = "0.4.5", optional = true }
zstd = { default-features = false, version = "0.13.3", optional = true }
oval = { version = "2.0.0", features = ["bytes"] }
futures = "0.3.31"
async-stream = "0.3.6"


[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
Loading
Loading