diff --git a/Cargo.lock b/Cargo.lock index d0b0bc1..0fbbcce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -312,7 +312,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fhe" -version = "0.1.0-beta.7" +version = "0.1.0-beta.8" dependencies = [ "console", "criterion", @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "fhe-math" -version = "0.1.0-beta.7" +version = "0.1.0-beta.8" dependencies = [ "criterion", "ethnum", @@ -359,14 +359,14 @@ dependencies = [ [[package]] name = "fhe-traits" -version = "0.1.0-beta.7" +version = "0.1.0-beta.8" dependencies = [ "rand", ] [[package]] name = "fhe-util" -version = "0.1.0-beta.7" +version = "0.1.0-beta.8" dependencies = [ "itertools 0.12.1", "num-bigint-dig", diff --git a/Cargo.toml b/Cargo.toml index f38633d..69c08c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,27 +8,27 @@ authors = ["Tancrède Lepoint"] documentation = "https://fhe.rs" edition = "2021" repository = "https://github.com/tlepoint/fhe.rs" -version = "0.1.0-beta.7" +version = "0.1.0-beta.8" license-file = "LICENSE" rust-version = "1.73" [workspace.dependencies] -console = "0.15.8" -criterion = "0.5.1" -doc-comment = "0.3.3" -ethnum = "1.5.0" -indicatif = "0.17.7" -itertools = "0.12.1" -ndarray = "0.15.6" -num-bigint = "0.4.4" -num-bigint-dig = "0.8.4" -num-traits = "0.2.17" -proptest = "1.4.0" -prost = "0.12.3" -prost-build = "0.12.3" -rand = "0.8.5" -rand_chacha = "0.3.1" -sha2 = "0.10.8" -thiserror = "1.0.56" -zeroize = "1.7.0" -zeroize_derive = "1.4.2" +console = "^0.15.8" +criterion = "^0.5.1" +doc-comment = "^0.3.3" +ethnum = "^1.5.0" +indicatif = "^0.17.7" +itertools = "^0.12.1" +ndarray = "^0.15.6" +num-bigint = "^0.4.4" +num-bigint-dig = "^0.8.4" +num-traits = "^0.2.17" +proptest = "^1.4.0" +prost = "^0.12.3" +prost-build = "^0.12.3" +rand = "^0.8.5" +rand_chacha = "^0.3.1" +sha2 = "^0.10.8" +thiserror = "^1.0.56" +zeroize = "^1.7.0" +zeroize_derive = "^1.4.2" diff --git a/README.md b/README.md index 8b35aa9..26972a2 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ To install, add the following to your project's `Cargo.toml` file: ```toml [dependencies] -fhe = "0.1.0-beta.7" -fhe-traits = "0.1.0-beta.7" +fhe = "0.1.0-beta.8" +fhe-traits = "0.1.0-beta.8" ``` ## Minimum supported version / toolchain diff --git a/crates/fhe-math/Cargo.toml b/crates/fhe-math/Cargo.toml index 03aae97..d8c24a2 100644 --- a/crates/fhe-math/Cargo.toml +++ b/crates/fhe-math/Cargo.toml @@ -13,8 +13,8 @@ rust-version.workspace = true bench = false # Disable default bench (we use criterion) [dependencies] -fhe-traits = { version = "^0.1.0-beta.7", path = "../fhe-traits" } -fhe-util = { version = "^0.1.0-beta.7", path = "../fhe-util" } +fhe-traits = { version = "^0.1.0-beta.8", path = "../fhe-traits" } +fhe-util = { version = "^0.1.0-beta.8", path = "../fhe-util" } ethnum.workspace = true itertools.workspace = true diff --git a/crates/fhe/Cargo.toml b/crates/fhe/Cargo.toml index 2ba044f..04063f0 100644 --- a/crates/fhe/Cargo.toml +++ b/crates/fhe/Cargo.toml @@ -13,9 +13,9 @@ rust-version.workspace = true bench = false # Disable default bench (we use criterion) [dependencies] -fhe-math = { version = "^0.1.0-beta.7", path = "../fhe-math" } -fhe-traits = { version = "^0.1.0-beta.7", path = "../fhe-traits" } -fhe-util = { version = "^0.1.0-beta.7", path = "../fhe-util" } +fhe-math = { version = "^0.1.0-beta.8", path = "../fhe-math" } +fhe-traits = { version = "^0.1.0-beta.8", path = "../fhe-traits" } +fhe-util = { version = "^0.1.0-beta.8", path = "../fhe-util" } doc-comment.workspace = true itertools.workspace = true