diff --git a/Cargo.toml b/Cargo.toml index 9f68fa8..d60f873 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,9 @@ thiserror = { version = "1.0", default-features = false } twofloat = { version = "0.7", default-features = false } wit-bindgen = { version = "0.34", default-features = false } wyhash = { version = "0.5", default-features = false } -zfp-sys = { version = "0.1.15", default-features = false } +# FIXME: 0.1.16 uses bindgen 1.70, which has a bug on 1.76 +# https://github.com/rust-lang/rust-bindgen/issues/2960 +zfp-sys = { version = "=0.1.15", default-features = false } zstd = { version = "0.13", default-features = false } zstd-sys = { version = "2.0.12", default-features = false } diff --git a/codecs/zfp/Cargo.toml b/codecs/zfp/Cargo.toml index 7b73351..002932b 100644 --- a/codecs/zfp/Cargo.toml +++ b/codecs/zfp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "numcodecs-zfp" -version = "0.2.0" +version = "0.2.1" edition = { workspace = true } authors = { workspace = true } repository = { workspace = true }