Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions akd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd"
version = "0.3.2"
version = "0.3.3"
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "An implementation of an auditable key directory"
license = "MIT OR Apache-2.0"
Expand All @@ -22,7 +22,7 @@ keyed_priority_queue = "0.3"
hex = "0.4"
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
tokio = { version = "1.10.2", features = ["full"] }
tokio = { version = "1.10", features = ["full"] }
async-recursion = "0.3"
log = { version = "0.4.8", features = ["kv_unstable"] }

Expand Down
4 changes: 2 additions & 2 deletions akd_mysql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_mysql"
version = "0.3.2"
version = "0.3.3"
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "A MySQL storage layer implementation for an auditable key directory (AKD)"
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ winter-math = "0.1"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
tokio = { version = "1.10.2", features = ["full"] }
tokio = { version = "1.10", features = ["full"] }
async-recursion = "0.3"
mysql_async = "0.28.1"
log = { version = "0.4.8", features = ["kv_unstable"] }
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ winter-math = "0.1"

[dev-dependencies]
log = { version = "0.4.8", features = ["kv_unstable"] }
tokio = { version = "1.10.2", features = ["full"] }
tokio = { version = "1.10", features = ["full"] }
akd = { path = "../akd" }
akd_mysql = { path = "../akd_mysql" }
serial_test = "*"
Expand Down
2 changes: 1 addition & 1 deletion poc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
[dependencies]
winter-crypto = "0.1"
winter-math = "0.1"
tokio = { version = "1.10.2", features = ["full"] }
tokio = { version = "1.10", features = ["full"] }
colored = "2.0.0"
hex = "0.4.3"
structopt = "0.3.13"
Expand Down