Skip to content

Commit

Permalink
Bump crate version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jellevos committed Sep 7, 2022
1 parent d5facaf commit eee8507
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions scicrypt-he/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions scicrypt-numbertheory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion scicrypt-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions scicrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -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" ]

0 comments on commit eee8507

Please sign in to comment.