chore: fix bincode dependency version

This commit is contained in:
Nicolas Sarlin
2025-12-29 17:08:52 +01:00
committed by IceTDrinker
parent 36b6376cc4
commit 70a0021cbf
8 changed files with 9 additions and 8 deletions

View File

@@ -36,6 +36,7 @@ rayon = "1.11"
serde = { version = "1.0", default-features = false }
wasm-bindgen = "0.2.101"
getrandom = "0.2.8"
bincode = "=1.3.3"
[profile.bench]
lto = "fat"

View File

@@ -61,8 +61,8 @@ bitvec = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
# Dependencies used for v80 pdi handling
bincode ={ version = "1.3", optional = true}
serde_derive ={ version = "1.0", optional = true}
bincode = { workspace = true, optional = true }
serde_derive = { version = "1.0", optional = true }
# Binary for manual debugging
# Enable to access Hpu register and drive some custom sequence by hand

View File

@@ -15,7 +15,7 @@ name = "benchmark"
path = "src/lib.rs"
[dependencies]
bincode = "1.3.3"
bincode = { workspace = true }
# clap has to be pinned as its minimum supported rust version
# changes often between minor releases, which breaks our CI
clap = { version = "=4.5.30", features = ["derive"] }

View File

@@ -30,7 +30,7 @@ serde = ["dep:serde", "num-complex/serde"]
[dev-dependencies]
rustfft = "6.0"
rand = { workspace = true }
bincode = "1.3"
bincode = { workspace = true }
more-asserts = "0.3.1"
serde_json = "1.0.96"
dyn-stack = { workspace = true, features = ["alloc"] }

View File

@@ -31,7 +31,7 @@ experimental = []
[dev-dependencies]
serde_json = "~1.0"
itertools = { workspace = true }
bincode = "1.3.3"
bincode = { workspace = true }
criterion = "0.5.1"
[[bench]]

View File

@@ -58,7 +58,7 @@ tfhe-csprng = { version = "0.8.0", path = "../tfhe-csprng", features = [
] }
serde = { workspace = true, features = ["default", "derive"] }
rayon = { workspace = true }
bincode = "1.3.3"
bincode = { workspace = true }
tfhe-fft = { version = "0.10.0", path = "../tfhe-fft", features = [
"serde",
"fft128",

View File

@@ -8,7 +8,7 @@ license = "BSD-3-Clause-Clear"
serde = { version = "1.0", features = ["derive"] }
ron = { version = "0.8", features = ["integer128"] }
ciborium = "0.2"
bincode = "1.3"
bincode = { workspace = true }
strum = { version = "0.26", features = ["derive"] }
semver = { version = "1.0" }
clap = { version = "4.5", features = ["derive"] }

View File

@@ -17,7 +17,7 @@ static_assertions = "1.1"
trybuild = { version = "1", features = ["diff"] }
# used to test various serialization formats
bincode = "1.3"
bincode = { workspace = true }
serde_json = "1.0"
ciborium = "0.2"
rmp-serde = "1.3"