Skip to content

Commit b1a1864

Browse files
Update bzip2 requirement from 0.4.4 to 0.6.0 (#7924)
# Which issue does this PR close? - Closes #7903 # Rationale for this change In addition to #7903 we need the enable default feature to fix the build. # What changes are included in this PR? Bump bzip2 dependency to 0.6 and enable default feature. # Are these changes tested? CI. # Are there any user-facing changes? Updated bzip2 dependency. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9c0cb9a commit b1a1864

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

arrow-avro/Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,22 @@ arrow-buffer = { workspace = true }
4747
arrow-array = { workspace = true }
4848
serde_json = { version = "1.0", default-features = false, features = ["std"] }
4949
serde = { version = "1.0.188", features = ["derive"] }
50-
flate2 = { version = "1.0", default-features = false, features = ["rust_backend"], optional = true }
50+
flate2 = { version = "1.0", default-features = false, features = [
51+
"rust_backend",
52+
], optional = true }
5153
snap = { version = "1.0", default-features = false, optional = true }
5254
zstd = { version = "0.13", default-features = false, optional = true }
53-
bzip2 = { version = "0.4.4", default-features = false, optional = true }
55+
bzip2 = { version = "0.6.0", optional = true }
5456
xz = { version = "0.1", default-features = false, optional = true }
5557
crc = { version = "3.0", optional = true }
5658
uuid = "1.17"
5759

5860
[dev-dependencies]
59-
rand = { version = "0.9.1", default-features = false, features = ["std", "std_rng", "thread_rng"] }
61+
rand = { version = "0.9.1", default-features = false, features = [
62+
"std",
63+
"std_rng",
64+
"thread_rng",
65+
] }
6066
criterion = { version = "0.6.0", default-features = false }
6167
tempfile = "3.3"
6268
arrow = { workspace = true }

0 commit comments

Comments
 (0)