Skip to content

Commit

Permalink
Bump UHF crates to universal-hash v0.5.0-pre.2 prereleases (#445)
Browse files Browse the repository at this point in the history
Upgrades the following UHF crates:

- `ghash` v0.5.0-pre.2
- `poly13095` v0.8.0-pre.2
- `polyval` v0.6.0-pre.2
  • Loading branch information
tarcieri authored Jul 24, 2022
1 parent 9e33b75 commit 4637eb5
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 35 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

16 changes: 7 additions & 9 deletions aes-gcm-siv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,20 @@ aead = { version = "0.5", default-features = false }
aes = { version = "0.8", optional = true }
cipher = "0.4"
ctr = "0.9"
polyval = { version = "=0.6.0-pre.1", default-features = false }
polyval = { version = "=0.6.0-pre.2", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }

[dev-dependencies]
aead = { version = "0.5", features = ["dev"], default-features = false }

[features]
default = ["aes", "alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
armv8 = ["polyval/armv8"] # nightly-only
force-soft = ["polyval/force-soft"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]
default = ["aes", "alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
16 changes: 7 additions & 9 deletions aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ aead = { version = "0.5", default-features = false }
aes = { version = "0.8", optional = true }
cipher = "0.4"
ctr = "0.9"
ghash = { version = "=0.5.0-pre.1", default-features = false }
ghash = { version = "=0.5.0-pre.2", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", optional = true, default-features = false }

Expand All @@ -30,14 +30,12 @@ aead = { version = "0.5", features = ["dev"], default-features = false }
hex-literal = "0.3"

[features]
default = ["aes", "alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
armv8 = ["ghash/armv8"] # nightly-only
force-soft = ["ghash/force-soft"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]
default = ["aes", "alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
Expand Down
15 changes: 7 additions & 8 deletions chacha20poly1305/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,20 @@ categories = ["cryptography", "no-std"]
aead = { version = "0.5", default-features = false }
chacha20 = { version = "0.9", features = ["zeroize"] }
cipher = "0.4"
poly1305 = "=0.8.0-pre.1"
poly1305 = "=0.8.0-pre.2"
zeroize = { version = "1", default-features = false }

[dev-dependencies]
aead = { version = "0.5", features = ["dev"], default-features = false }

[features]
default = ["alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]
default = ["alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
reduced-round = []
force-soft = ["poly1305/force-soft"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion xsalsa20poly1305/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.56"
[dependencies]
aead = { version = "0.5", default-features = false }
salsa20 = { version = "0.10", features = ["zeroize"] }
poly1305 = "=0.8.0-pre.1"
poly1305 = "=0.8.0-pre.2"
rand_core = { version = "0.6", optional = true }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }
Expand Down

0 comments on commit 4637eb5

Please sign in to comment.