diff --git a/Cargo.lock b/Cargo.lock index a650fd9..47e8abc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -322,7 +322,7 @@ checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" [[package]] name = "fhe" -version = "0.1.0-beta.4" +version = "0.1.0-beta.5" dependencies = [ "console", "criterion", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "fhe-math" -version = "0.1.0-beta.4" +version = "0.1.0-beta.5" dependencies = [ "criterion", "crypto-bigint", @@ -366,14 +366,14 @@ dependencies = [ [[package]] name = "fhe-traits" -version = "0.1.0-beta.4" +version = "0.1.0-beta.5" dependencies = [ "rand", ] [[package]] name = "fhe-util" -version = "0.1.0-beta.4" +version = "0.1.0-beta.5" dependencies = [ "itertools 0.11.0", "num-bigint-dig", diff --git a/Cargo.toml b/Cargo.toml index 9d6aa96..94979b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Tancrède Lepoint"] documentation = "https://fhe.rs" edition = "2021" repository = "https://github.com/tlepoint/fhe.rs" -version = "0.1.0-beta.4" +version = "0.1.0-beta.5" license-file = "LICENSE" [workspace.dependencies] diff --git a/crates/fhe-math/Cargo.toml b/crates/fhe-math/Cargo.toml index 3c4ebc0..ce55b07 100644 --- a/crates/fhe-math/Cargo.toml +++ b/crates/fhe-math/Cargo.toml @@ -12,8 +12,8 @@ version.workspace = true bench = false # Disable default bench (we use criterion) [dependencies] -fhe-traits = { version = "^0.1.0-beta.4", path = "../fhe-traits" } -fhe-util = { version = "^0.1.0-beta.4", path = "../fhe-util" } +fhe-traits = { version = "^0.1.0-beta.5", path = "../fhe-traits" } +fhe-util = { version = "^0.1.0-beta.5", path = "../fhe-util" } crypto-bigint.workspace = true itertools.workspace = true diff --git a/crates/fhe/Cargo.toml b/crates/fhe/Cargo.toml index f65d921..d23261f 100644 --- a/crates/fhe/Cargo.toml +++ b/crates/fhe/Cargo.toml @@ -12,9 +12,9 @@ version.workspace = true bench = false # Disable default bench (we use criterion) [dependencies] -fhe-math = { version = "^0.1.0-beta.4", path = "../fhe-math" } -fhe-traits = { version = "^0.1.0-beta.4", path = "../fhe-traits" } -fhe-util = { version = "^0.1.0-beta.4", path = "../fhe-util" } +fhe-math = { version = "^0.1.0-beta.5", path = "../fhe-math" } +fhe-traits = { version = "^0.1.0-beta.5", path = "../fhe-traits" } +fhe-util = { version = "^0.1.0-beta.5", path = "../fhe-util" } itertools.workspace = true num-bigint.workspace = true