-
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.
Adding mock support for the Database trait in AKD (#333)
* Adding mock support for the Database trait in AKD Related to: #332 * adding a mocked database test * Move to Arc in StorageManager so we can clone it cleanly. * Make storage manager create and manage the Arc * Bump version for contract changes
- Loading branch information
Showing
17 changed files
with
261 additions
and
55 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" | ||
|
@@ -62,6 +62,8 @@ once_cell = { version = "1" } | |
ctor = "0.1" | ||
tokio-test = "0.4" | ||
tokio = { version = "1.21", features = ["rt", "sync", "time", "macros"] } | ||
mockall = "0.11" | ||
futures = "0.3" | ||
|
||
# To enable the public-test feature in tests | ||
akd = { path = ".", features = ["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
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
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
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
Oops, something went wrong.