-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from andrewwhitehead/021-deps
Update p256, k256, sqlx dependencies; update version to 0.2.1
- Loading branch information
Showing
5 changed files
with
26 additions
and
32 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ members = ["askar-crypto"] | |
|
||
[package] | ||
name = "aries-askar" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Hyperledger Aries Contributors <[email protected]>"] | ||
edition = "2018" | ||
description = "Hyperledger Aries Askar secure storage" | ||
|
@@ -64,15 +64,15 @@ sha2 = "0.9" | |
tokio = { version = "1.5", features = ["time"] } | ||
url = { version = "2.1", default-features = false } | ||
uuid = { version = "0.8", features = ["v4"] } | ||
zeroize = "1.3" | ||
zeroize = "1.4" | ||
|
||
[dependencies.askar-crypto] | ||
version = "0.2" | ||
path = "./askar-crypto" | ||
features = ["all_keys", "any_key", "argon2", "crypto_box", "std"] | ||
|
||
[dependencies.sqlx] | ||
version = "=0.5.1" | ||
version = "0.5.5" | ||
default-features = false | ||
features = ["chrono", "runtime-tokio-rustls"] | ||
optional = true | ||
|
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 = "askar-crypto" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Hyperledger Aries Contributors <[email protected]>"] | ||
edition = "2018" | ||
description = "Hyperledger Aries Askar cryptography" | ||
|
@@ -62,12 +62,12 @@ digest = "0.9" | |
group = "0.9" | ||
hkdf = { version = "0.11", optional = true } | ||
hmac = { version = "0.11", optional = true } | ||
k256 = { version = "0.8", default-features = false, features = ["arithmetic", "ecdsa", "ecdh", "sha256", "zeroize"], optional = true } | ||
p256 = { version = "0.8", default-features = false, features = ["arithmetic", "ecdsa", "ecdh", "zeroize"], optional = true } | ||
k256 = { version = "0.9", default-features = false, features = ["arithmetic", "ecdsa", "ecdh", "sha256", "zeroize"], optional = true } | ||
p256 = { version = "0.9", default-features = false, features = ["arithmetic", "ecdsa", "ecdh", "zeroize"], optional = true } | ||
rand = { version = "0.8", default-features = false } | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
serde-json-core = { version = "0.4", default-features = false } | ||
subtle = "2.4" | ||
sha2 = { version = "0.9", default-features = false } | ||
x25519-dalek = { version = "1.1", default-features = false, features = ["u64_backend"], optional = true } | ||
zeroize = { version = "1.3", features = ["zeroize_derive"] } | ||
zeroize = { version = "1.4", features = ["zeroize_derive"] } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""aries_askar library wrapper version.""" | ||
|
||
__version__ = "0.2.0" | ||
__version__ = "0.2.1" |