Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Upgrade aes/aes-gcm/block-modes/chacha20poly1305 crates
Browse files Browse the repository at this point in the history
Updates the following crates:

- `aes` => v0.6
- `aes-gcm` => v0.8
- `block-modes` => v0.7
- `chacha20poly1305` => v0.7

Signed-off-by: Tony Arcieri <bascule@gmail.com>
  • Loading branch information
tarcieri authored and Michael Lodder committed Nov 9, 2020
1 parent b10f0f9 commit cc9cef0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 45 deletions.
81 changes: 40 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions libursa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ x25519_asm = ["arrayref", "curve25519-dalek/nightly", "curve25519-dalek/avx2_bac

[dependencies]
aead = { version = "0.3", optional = true }
aes = { version = "0.5", optional = true }
aes-gcm = { version = "0.7", optional = true }
aes = { version = "0.6", optional = true }
aes-gcm = { version = "0.8", optional = true }
amcl = { version = "0.2", optional = true, default-features = false, features = ["bn254", "secp256k1"]}
amcl_wrapper = {version = "0.4.0", features = ["bls381"], optional = true }
arrayref = { version = "0.3.5", optional = true }
blake2 = { version = "0.9", default-features = false, optional = true }
block-modes = { version = "0.6", optional = true }
block-modes = { version = "0.7", optional = true }
block-padding = { version = "0.2", optional = true }
clear_on_drop = { version = "0.2.4", optional = true }
console_error_panic_hook = { version = "0.1.5", optional = true }
Expand All @@ -139,7 +139,7 @@ openssl = { version = "0.10", optional = true }
# TODO: Find out if the wasm-bindgen feature can be made dependent on our own wasm feature
rand = { version = "0.7", features = ["wasm-bindgen"], optional = true }
rand_chacha = { version = "=0.2.1", optional = true }
rustchacha20poly1305 = { version = "0.6", package = "chacha20poly1305", optional = true }
rustchacha20poly1305 = { version = "0.7", package = "chacha20poly1305", optional = true }
rustlibsecp256k1 = { version = "0.3", package = "libsecp256k1", optional = true }
secp256k1 = { version = "0.19", optional = true, features = ["rand", "serde"]}
serde = { version = "1.0", features = ["derive"], optional = true}
Expand Down

0 comments on commit cc9cef0

Please sign in to comment.