From 83c01d03be732f01454245a49048b3b59ffc60f1 Mon Sep 17 00:00:00 2001 From: Paul Roman Date: Tue, 2 Jun 2026 22:02:44 -0400 Subject: [PATCH] feat(avro): enable snappy codec support - Some producers compress manifests with snappy instead of zstd --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a9143d806e..669f5458fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ rust-version = "1.92" aes = { version = "0.8", features = ["zeroize"] } aes-gcm = "0.10" anyhow = "1.0.72" -apache-avro = { version = "0.21", features = ["zstandard"] } +apache-avro = { version = "0.21", features = ["snappy", "zstandard"] } array-init = "2" arrow = "58" arrow-arith = "58"