chore(deps): update cargo dependencies

This commit is contained in:
Mayeul@Zama
2023-09-19 15:29:39 +02:00
committed by mayeul-zama
parent df78d178da
commit aef8f31621
4 changed files with 10 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ path = "../../tfhe"
features = [ "boolean", "shortint", "integer", "aarch64-unix" ] features = [ "boolean", "shortint", "integer", "aarch64-unix" ]
[dev-dependencies] [dev-dependencies]
criterion = { version = "0.4", features = [ "html_reports" ]} criterion = { version = "0.5.1", features = [ "html_reports" ]}
[[bench]] [[bench]]
name = "trivium" name = "trivium"

View File

@@ -19,8 +19,8 @@ libc = "0.2.133"
[dev-dependencies] [dev-dependencies]
rand = "0.8.3" rand = "0.8.3"
criterion = "0.3" criterion = "0.5.1"
clap = "=4.2.7" clap = "=4.4.4"
[features] [features]
parallel = ["rayon"] parallel = ["rayon"]

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
clap = "3.1" clap = "=4.4.4"
lazy_static = "1.4" lazy_static = "1.4"
log = "0.4" log = "0.4"
simplelog = "0.12" simplelog = "0.12"

View File

@@ -26,16 +26,16 @@ rand = "0.8.5"
rand_distr = "0.4.3" rand_distr = "0.4.3"
paste = "1.0.7" paste = "1.0.7"
lazy_static = { version = "1.4.0" } lazy_static = { version = "1.4.0" }
criterion = "0.4.0" criterion = "0.5.1"
doc-comment = "0.3.3" doc-comment = "0.3.3"
serde_json = "1.0.94" serde_json = "1.0.94"
# clap has to be pinned as its minimum supported rust version # clap has to be pinned as its minimum supported rust version
# changes often between minor releases, which breaks our CI # changes often between minor releases, which breaks our CI
clap = { version = "=4.2.7", features = ["derive"] } clap = { version = "=4.4.4", features = ["derive"] }
# Used in user documentation # Used in user documentation
bincode = "1.3.3" bincode = "1.3.3"
fs2 = { version = "0.4.3" } fs2 = { version = "0.4.3" }
itertools = "0.10.5" itertools = "0.11.0"
# For erf and normality test # For erf and normality test
libm = "0.2.6" libm = "0.2.6"
# Begin regex-engine deps # Begin regex-engine deps
@@ -46,7 +46,7 @@ log = "0.4.19"
# End regex-engine deps # End regex-engine deps
[build-dependencies] [build-dependencies]
cbindgen = { version = "0.24.3", optional = true } cbindgen = { version = "0.26.0", optional = true }
[dependencies] [dependencies]
concrete-csprng = { version = "0.4.0", path= "../concrete-csprng", features = [ concrete-csprng = { version = "0.4.0", path= "../concrete-csprng", features = [
@@ -64,7 +64,7 @@ dyn-stack = { version = "0.9" }
paste = { version = "1.0.7", optional = true } paste = { version = "1.0.7", optional = true }
fs2 = { version = "0.4.3", optional = true } fs2 = { version = "0.4.3", optional = true }
# While we wait for repeat_n in rust standard library # While we wait for repeat_n in rust standard library
itertools = "0.10.5" itertools = "0.11.0"
# wasm deps # wasm deps
wasm-bindgen = { version = "0.2.86", features = [ wasm-bindgen = { version = "0.2.86", features = [
@@ -73,7 +73,7 @@ wasm-bindgen = { version = "0.2.86", features = [
wasm-bindgen-rayon = { version = "1.0", optional = true } wasm-bindgen-rayon = { version = "1.0", optional = true }
js-sys = { version = "0.3", optional = true } js-sys = { version = "0.3", optional = true }
console_error_panic_hook = { version = "0.1.7", optional = true } console_error_panic_hook = { version = "0.1.7", optional = true }
serde-wasm-bindgen = { version = "0.4", optional = true } serde-wasm-bindgen = { version = "0.6.0", optional = true }
getrandom = { version = "0.2.8", optional = true } getrandom = { version = "0.2.8", optional = true }
bytemuck = "1.13.1" bytemuck = "1.13.1"