This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch miniz_oxide_improvements in repository https://gitbox.apache.org/repos/asf/avro-rs.git
commit a25df70b46ea6b550e35f612b13ff7a59a926c73 Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Mon Apr 7 11:19:43 2025 +0300 Issue #169 - Be explicit about the used features of miniz_oxide Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- avro/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avro/Cargo.toml b/avro/Cargo.toml index 4064817..eae7c0b 100644 --- a/avro/Cargo.toml +++ b/avro/Cargo.toml @@ -59,7 +59,7 @@ bon = { default-features = false, version = "3.5.1" } bzip2 = { version = "0.5.2", optional = true } crc32fast = { default-features = false, version = "1.4.2", optional = true } digest = { default-features = false, version = "0.10.7", features = ["core-api"] } -miniz_oxide = "0.8.7" +miniz_oxide = { default-features = false, version = "0.8.7", features = ["with-alloc"] } log = { workspace = true } num-bigint = { default-features = false, version = "0.4.6", features = ["std", "serde"] } regex-lite = { default-features = false, version = "0.1.6", features = ["std", "string"] }
