Skip to content

Commit

Permalink
Prepare release 2.2 (#18)
Browse files Browse the repository at this point in the history
* Run cargo update

* Bump versions

* Update Cargo.lock

* Update no-asm-tests/Cargo.lock
  • Loading branch information
Remoun Metyas authored Mar 11, 2022
1 parent 7d59741 commit 945a91e
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 42 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion aligned-cmov/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aligned-cmov"
version = "2.1.0"
version = "2.2.0"
description = "Fast constant-time conditional moves of aligned bytes"
authors = ["MobileCoin"]
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions balanced-tree-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "balanced-tree-index"
version = "2.1.0"
version = "2.2.0"
description = "Utilities for constant-time manipulation of a complete binary tree with a flat in-memory representation."
authors = ["MobileCoin"]
license = "GPL-3.0"
Expand All @@ -11,7 +11,7 @@ keywords = ["binary-tree", "constant-time", "utilities", "no_std"]
categories = ["cryptography", "data-structures"]

[dependencies]
aligned-cmov = { path = "../aligned-cmov", version = "2.1" }
aligned-cmov = { path = "../aligned-cmov", version = "2.2" }

rand_core = { version = "0.6", default-features = false }

Expand Down
6 changes: 3 additions & 3 deletions mc-oblivious-map/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-oblivious-map"
version = "2.1.0"
version = "2.2.0"
description = "Implementation of Oblivious Hash Map data structures on top of Oblivious RAM"
authors = ["MobileCoin"]
license = "GPL-3.0"
Expand All @@ -15,8 +15,8 @@ no_asm_insecure = ["aligned-cmov/no_asm_insecure"]

[dependencies]
aligned-array = { version = "1", features = ["subtle"] }
aligned-cmov = { path = "../aligned-cmov", version = "2.1" }
mc-oblivious-traits = { path = "../mc-oblivious-traits", version = "2" }
aligned-cmov = { path = "../aligned-cmov", version = "2.2" }
mc-oblivious-traits = { path = "../mc-oblivious-traits", version = "2.2" }

generic-array = { version = "0.14", default-features = false }
rand_core = { version = "0.6", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions mc-oblivious-ram/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-oblivious-ram"
version = "2.1.0"
version = "2.2.0"
description = "Implementations of Oblivious RAM data structures"
authors = ["MobileCoin"]
license = "GPL-3.0"
Expand All @@ -14,9 +14,9 @@ categories = ["cryptography", "data-structures", "no-std"]
no_asm_insecure = ["aligned-cmov/no_asm_insecure"]

[dependencies]
aligned-cmov = { path = "../aligned-cmov", version = "2.1" }
balanced-tree-index = { path = "../balanced-tree-index", version = "2" }
mc-oblivious-traits = { path = "../mc-oblivious-traits", version = "2" }
aligned-cmov = { path = "../aligned-cmov", version = "2.2" }
balanced-tree-index = { path = "../balanced-tree-index", version = "2.2" }
mc-oblivious-traits = { path = "../mc-oblivious-traits", version = "2.2" }

rand_core = { version = "0.6", default-features = false }

Expand Down
6 changes: 3 additions & 3 deletions mc-oblivious-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-oblivious-traits"
version = "2.1.0"
version = "2.2.0"
description = "Traits and interfaces for components related to Oblivious data structures"
authors = ["MobileCoin"]
license = "GPL-3.0"
Expand All @@ -14,7 +14,7 @@ categories = ["cryptography", "data-structures", "no-std"]
no_asm_insecure = ["aligned-cmov/no_asm_insecure"]

[dependencies]
aligned-cmov = { path = "../aligned-cmov", version = "2.1" }
balanced-tree-index = { path = "../balanced-tree-index", version = "2.1" }
aligned-cmov = { path = "../aligned-cmov", version = "2.2" }
balanced-tree-index = { path = "../balanced-tree-index", version = "2.2" }

rand_core = { version = "0.6", default-features = false }
10 changes: 5 additions & 5 deletions no-asm-tests/Cargo.lock

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

2 changes: 1 addition & 1 deletion no-asm-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "no-asm-tests"
version = "2.1.0"
version = "2.2.0"
description = "A crate in another workspace which sets the no_asm_insecure flag and runs tests that way"
authors = ["MobileCoin"]
edition = "2018"
Expand Down

0 comments on commit 945a91e

Please sign in to comment.