From 39a1e09946091cb4ce906c4fac58f4129fcedb2e Mon Sep 17 00:00:00 2001 From: Sean Lawlor Date: Tue, 7 Dec 2021 14:44:23 -0500 Subject: [PATCH 1/2] We should only be specifying the major and minor versions of tokio, not the build --- akd/Cargo.toml | 2 +- akd_mysql/Cargo.toml | 2 +- integration_tests/Cargo.toml | 2 +- poc/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/akd/Cargo.toml b/akd/Cargo.toml index 6043ae58..23ca09fb 100644 --- a/akd/Cargo.toml +++ b/akd/Cargo.toml @@ -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"] } diff --git a/akd_mysql/Cargo.toml b/akd_mysql/Cargo.toml index 128a92d8..f6d3aab2 100644 --- a/akd_mysql/Cargo.toml +++ b/akd_mysql/Cargo.toml @@ -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"] } diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index e6c77b7c..46c385e5 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -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 = "*" diff --git a/poc/Cargo.toml b/poc/Cargo.toml index 6ff7dec4..cbb7efea 100644 --- a/poc/Cargo.toml +++ b/poc/Cargo.toml @@ -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" From 024dec1718a2d15c77d2b7af4f9208877b3d36d1 Mon Sep 17 00:00:00 2001 From: Sean Lawlor Date: Tue, 7 Dec 2021 14:46:37 -0500 Subject: [PATCH 2/2] Version bump --- akd/Cargo.toml | 2 +- akd_mysql/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/akd/Cargo.toml b/akd/Cargo.toml index 23ca09fb..c2ee0052 100644 --- a/akd/Cargo.toml +++ b/akd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akd" -version = "0.3.2" +version = "0.3.3" authors = ["Harjasleen Malvai ", "Kevin Lewi ", "Sean Lawlor "] description = "An implementation of an auditable key directory" license = "MIT OR Apache-2.0" diff --git a/akd_mysql/Cargo.toml b/akd_mysql/Cargo.toml index f6d3aab2..7baa7396 100644 --- a/akd_mysql/Cargo.toml +++ b/akd_mysql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akd_mysql" -version = "0.3.2" +version = "0.3.3" authors = ["Harjasleen Malvai ", "Kevin Lewi ", "Sean Lawlor "] description = "A MySQL storage layer implementation for an auditable key directory (AKD)" license = "MIT OR Apache-2.0"