-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "akd" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "akd_client" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"] | ||
description = "Client verification companion for the auditable key directory with limited dependencies." | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "akd_core" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
authors = ["Sean Lawlor <[email protected]>"] | ||
description = "Core utilities for the auditable-key-directory suite of crates (akd and akd_client)" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "akd_local_auditor" | ||
default-run = "akd_local_auditor" | ||
version = "0.8.5" | ||
version = "0.0.0" | ||
authors = ["Sean Lawlor <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "akd_mysql" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
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" | ||
|
@@ -25,9 +25,9 @@ async-recursion = "0.3" | |
mysql_async = "0.31" | ||
mysql_common = "0.29.1" | ||
log = { version = "0.4.8", features = ["kv_unstable"] } | ||
akd = { path = "../akd", version = "0.8.5", features = ["serde_serialization"], default-features = false } | ||
akd = { path = "../akd", version = "0.8.6", features = ["serde_serialization"], default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
serial_test = "0.5" | ||
akd = { path = "../akd", version = "0.8.5", features = ["blake3", "public-tests"], default-features = false } | ||
akd = { path = "../akd", version = "0.8.6", features = ["blake3", "public-tests"], default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "akd_test_tools" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
authors = ["Evan Au <[email protected]>", "Sean Lawlor <[email protected]>"] | ||
description = "Test utilities and tooling" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -22,9 +22,9 @@ serde = "1.0" | |
async-trait = "0.1" | ||
thread-id = "3" | ||
|
||
akd = { path = "../akd", features = ["serde_serialization"], version = "0.8.5" } | ||
akd = { path = "../akd", features = ["serde_serialization"], version = "0.8.6" } | ||
|
||
[dev-dependencies] | ||
assert_fs="1" | ||
|
||
akd = { path = "../akd", features = ["public-tests", "rand", "serde_serialization"], version = "0.8.5" } | ||
akd = { path = "../akd", features = ["public-tests", "rand", "serde_serialization"], version = "0.8.6" } |