From eee8507d66e111d835849ed56e83b971c7e69f40 Mon Sep 17 00:00:00 2001 From: Jelle Vos Date: Wed, 7 Sep 2022 14:50:06 +0200 Subject: [PATCH] Bump crate version to 0.6.1 --- Cargo.lock | 8 ++++---- scicrypt-he/Cargo.toml | 6 +++--- scicrypt-numbertheory/Cargo.toml | 4 ++-- scicrypt-traits/Cargo.toml | 2 +- scicrypt/Cargo.toml | 8 ++++---- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63469a9..a41e671 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "scicrypt" -version = "0.6.0" +version = "0.6.1" dependencies = [ "scicrypt-he", "scicrypt-numbertheory", @@ -702,7 +702,7 @@ dependencies = [ [[package]] name = "scicrypt-he" -version = "0.6.0" +version = "0.6.1" dependencies = [ "bincode", "criterion", @@ -716,7 +716,7 @@ dependencies = [ [[package]] name = "scicrypt-numbertheory" -version = "0.6.0" +version = "0.6.1" dependencies = [ "criterion", "glass_pumpkin", @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "scicrypt-traits" -version = "0.6.0" +version = "0.6.1" dependencies = [ "rand_core", "rug", diff --git a/scicrypt-he/Cargo.toml b/scicrypt-he/Cargo.toml index 51d8d7b..ee3cbb2 100644 --- a/scicrypt-he/Cargo.toml +++ b/scicrypt-he/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scicrypt-he" description = "A scicrypt crate implementing several well-known partially homomorphic (threshold) cryptosystems" -version = "0.6.0" +version = "0.6.1" authors = ["Jelle Vos "] edition = "2018" license = "MIT" @@ -13,8 +13,8 @@ readme = "README.md" bench = false # Disable default bench (we use criterion) [dependencies] -scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } -scicrypt-numbertheory = { version = "0.6.0", path = "../scicrypt-numbertheory" } +scicrypt-traits = { version = "0.6.1", path = "../scicrypt-traits" } +scicrypt-numbertheory = { version = "0.6.1", path = "../scicrypt-numbertheory" } curve25519-dalek = { package = "curve25519-dalek", version = "4.0.0-pre.2", features = ["serde"] } rug = { version = "1.13", default-features = false, features = ["integer", "rand", "serde"]} rand_core = "0.6" diff --git a/scicrypt-numbertheory/Cargo.toml b/scicrypt-numbertheory/Cargo.toml index 38ca69d..5584719 100644 --- a/scicrypt-numbertheory/Cargo.toml +++ b/scicrypt-numbertheory/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scicrypt-numbertheory" description = "A scicrypt crate implementing number theoretic algorithms such as random (safe) prime generation" -version = "0.6.0" +version = "0.6.1" authors = ["Jelle Vos "] edition = "2018" license = "MIT" @@ -13,7 +13,7 @@ readme = "README.md" bench = false # Disable default bench (we use criterion) [dependencies] -scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } +scicrypt-traits = { version = "0.6.1", path = "../scicrypt-traits" } rug = { version = "1.13", default-features = false, features = ["integer", "rand"]} rand_core = "0.6" diff --git a/scicrypt-traits/Cargo.toml b/scicrypt-traits/Cargo.toml index 7fc0b47..54544fe 100644 --- a/scicrypt-traits/Cargo.toml +++ b/scicrypt-traits/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scicrypt-traits" description = "A scicrypt crate defining general traits for cryptographic systems and functionalities" -version = "0.6.0" +version = "0.6.1" authors = ["Jelle Vos "] edition = "2018" license = "MIT" diff --git a/scicrypt/Cargo.toml b/scicrypt/Cargo.toml index f643a44..795302a 100644 --- a/scicrypt/Cargo.toml +++ b/scicrypt/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scicrypt" description = "Lightweight cryptographic building blocks for proof of concept implementations in multi-party computation" -version = "0.6.0" # In sync with `scicrypt-traits`, `scicrypt-numbertheory`, and `scicrypt-he` +version = "0.6.1" # In sync with `scicrypt-traits`, `scicrypt-numbertheory`, and `scicrypt-he` authors = ["Jelle Vos "] edition = "2018" license = "MIT" @@ -13,9 +13,9 @@ readme = "README.md" bench = false # Disable default bench (we use criterion) [dependencies] -scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } -scicrypt-numbertheory = { version = "0.6.0", path = "../scicrypt-numbertheory" } -scicrypt-he = { version = "0.6.0", path = "../scicrypt-he" } +scicrypt-traits = { version = "0.6.1", path = "../scicrypt-traits" } +scicrypt-numbertheory = { version = "0.6.1", path = "../scicrypt-numbertheory" } +scicrypt-he = { version = "0.6.1", path = "../scicrypt-he" } [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "katex-header.html" ]