feat(obiread): add static bzip2 and lzma compression support #3

Merged
coissac merged 1 commits from push-qpvrrxpnqlkw into main 2026-05-22 08:29:43 +00:00
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -1617,7 +1617,9 @@ dependencies = [
name = "obiread" name = "obiread"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bzip2-sys",
"infer", "infer",
"liblzma-sys",
"niffler 2.7.0", "niffler 2.7.0",
"obikrope", "obikrope",
"regex", "regex",
+2
View File
@@ -6,6 +6,8 @@ edition = "2024"
[dependencies] [dependencies]
obikrope = { path = "../obikrope" } obikrope = { path = "../obikrope" }
niffler = { version = "2", default-features = false, features = ["gz", "bz2", "lzma", "zstd"] } niffler = { version = "2", default-features = false, features = ["gz", "bz2", "lzma", "zstd"] }
bzip2-sys = { version = "0.1", features = ["static"] }
liblzma-sys = { version = "0.3", features = ["static"] }
ureq = "2" ureq = "2"
tracing = "0.1.44" tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["fmt", "env-filter"] } tracing-subscriber = { version = "0.3.23", features = ["fmt", "env-filter"] }