Skip to content

Commit

Permalink
Merge pull request #199 from andrewwhitehead/upd/ver-030
Browse files Browse the repository at this point in the history
Update dependencies and crate versions
  • Loading branch information
swcurran authored Nov 10, 2023
2 parents 9200a30 + db3141a commit 13bc4d0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["askar-crypto", "askar-storage"]

[package]
name = "aries-askar"
version = "0.3.0-dev.1"
version = "0.3.0"
authors = ["Hyperledger Aries Contributors <aries@lists.hyperledger.org>"]
edition = "2021"
description = "Hyperledger Aries Askar secure storage"
Expand Down Expand Up @@ -36,8 +36,8 @@ pg_test = ["askar-storage/pg_test"]
migration = ["askar-storage/migration"]

[dependencies]
async-lock = "2.5"
env_logger = { version = "0.9", optional = true }
async-lock = "3.0"
env_logger = { version = "0.10", optional = true }
ffi-support = { version = "0.4", optional = true }
jemallocator = { version = "0.5", optional = true }
log = { version = "0.4", optional = true }
Expand All @@ -48,7 +48,7 @@ serde_json = "1.0"
zeroize = "1.5"

[dependencies.askar-crypto]
version = "0.2.5"
version = "0.3"
path = "./askar-crypto"
features = ["all_keys", "any_key", "argon2", "crypto_box", "std"]

Expand Down
2 changes: 1 addition & 1 deletion askar-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askar-crypto"
version = "0.2.5"
version = "0.3.0"
authors = ["Hyperledger Aries Contributors <aries@lists.hyperledger.org>"]
edition = "2021"
description = "Hyperledger Aries Askar cryptography"
Expand Down
8 changes: 4 additions & 4 deletions askar-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ pg_test = ["postgres"]

[dependencies]
arc-swap = "1.6"
async-lock = "2.5"
async-lock = "3.0"
async-stream = "0.3"
bs58 = "0.5"
chrono = "0.4"
digest = "0.10"
futures-lite = "1.11"
futures-lite = "2.0"
hex = "0.4"
hmac = "0.12"
itertools = "0.11"
log = { version = "0.4", optional = true }
once_cell = "1.5"
percent-encoding = "2.0"
rmp-serde = { version= "1.1", optional = true }
rmp-serde = { version = "1.1", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
Expand All @@ -50,7 +50,7 @@ uuid = { version = "1.2", features = ["v4"] }
zeroize = "1.5"

[dependencies.askar-crypto]
version = "0.2.5"
version = "0.3"
path = "../askar-crypto"
default-features = false
features = ["alloc", "argon2", "chacha", "std_rng"]
Expand Down

0 comments on commit 13bc4d0

Please sign in to comment.