Skip to content

Commit

Permalink
chore: update dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeul-zama committed Jan 8, 2025
1 parent ce9acf6 commit 35d5804
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ exclude = [
]
[workspace.dependencies]
aligned-vec = { version = "0.6", default-features = false }
bytemuck = "1.14.3"
bytemuck = "1.21"
dyn-stack = { version = "0.11", default-features = false }
itertools = "0.13"
itertools = "0.14"
num-complex = "0.4"
pulp = { version = "0.21.1", default-features = false }
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion backends/tfhe-cuda-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ keywords = ["fully", "homomorphic", "encryption", "fhe", "cryptography"]
[build-dependencies]
cmake = { version = "0.1" }
pkg-config = { version = "0.3" }
bindgen = "0.70.1"
bindgen = "0.71.1"
4 changes: 2 additions & 2 deletions tfhe-fft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ getrandom = { version = "0.2", features = ["js"] }
rug = "1.19.1"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = "0.4"
fftw-sys = { version = "0.6", default-features = false, features = ["system"] }
criterion = "0.5"
fftw-sys = { version = "0.8", default-features = false, features = ["system"] }

[[bench]]
name = "fft"
Expand Down
2 changes: 1 addition & 1 deletion tfhe-ntt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ std = ["pulp/std", "aligned-vec/std"]
nightly = ["pulp/nightly"]

[dev-dependencies]
criterion = "0.4"
criterion = "0.5"
rand = { workspace = true }
serde = "1.0.163"
serde_json = "1.0.96"
Expand Down
10 changes: 6 additions & 4 deletions tfhe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ serde_json = "1.0.94"
clap = { version = "=4.4.4", features = ["derive"] }
# Used in user documentation
fs2 = { version = "0.4.3" }
statrs = "0.16"
statrs = "0.18"
# For erf and normality test
libm = "0.2.6"
# Begin regex-engine deps
test-case = "3.1.0"
combine = "4.6.6"
env_logger = "0.10.0"
env_logger = "0.11"
log = "0.4.19"
hex = "0.4.3"
# End regex-engine deps
Expand All @@ -50,10 +50,12 @@ tfhe-backward-compat-data = { git = "https://github.com/zama-ai/tfhe-backward-co
strum = { version = "0.26", features = ["derive"] }

[build-dependencies]
cbindgen = { version = "0.26.0", optional = true }
cbindgen = { version = "0.27", optional = true }

[dependencies]
tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = ["parallel"] }
tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = [
"parallel",
] }
serde = { workspace = true, features = ["default", "derive"] }
rayon = { workspace = true }
bincode = "1.3.3"
Expand Down

0 comments on commit 35d5804

Please sign in to comment.