chore: make 1.4.x compile properly even if some deps are updated to 2024

This commit is contained in:
Arthur Meyre
2025-10-16 13:50:30 +02:00
parent e33cd959e9
commit 3e105a76ba
2 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
[workspace] [workspace]
resolver = "2" resolver = "3"
members = [ members = [
"tfhe", "tfhe",
"tfhe-benchmark", "tfhe-benchmark",

View File

@@ -61,8 +61,12 @@ bitvec = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true }
# Dependencies used for v80 pdi handling # Dependencies used for v80 pdi handling
bincode ={ version = "1.3", optional = true} bincode = { version = "1.3", optional = true }
serde_derive ={ version = "1.0", optional = true} serde_derive = { version = "1.0", optional = true }
# Fix build for toolchain < 1.85, newer versions are edition 2024 which requires rust 1.85
ignore = { version = "<0.4.24" }
globset = { version = "<0.4.17" }
# Binary for manual debugging # Binary for manual debugging
# Enable to access Hpu register and drive some custom sequence by hand # Enable to access Hpu register and drive some custom sequence by hand