Skip to content

Commit

Permalink
Bump ctr to v0.10.0-pre.0 crate release
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jul 26, 2024
1 parent eebc8ac commit dd83331
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 30 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

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

10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@ members = [
resolver = "2"

[patch.crates-io]

# https://github.com/RustCrypto/block-modes/pull/56
ctr = { git = "https://github.com/RustCrypto/block-modes.git" }

# https://github.com/RustCrypto/MACs/pull/158
cmac = { git = "https://github.com/RustCrypto/MACs.git" }
pmac = { git = "https://github.com/RustCrypto/MACs.git" }
cmac = { git = "https://github.com/RustCrypto/MACs.git" }
pmac = { git = "https://github.com/RustCrypto/MACs.git" }

# https://github.com/RustCrypto/stream-ciphers/pull/345
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
14 changes: 7 additions & 7 deletions aes-gcm-siv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version = "1.65"
aead = { version = "=0.6.0-pre.0", default-features = false }
aes = { version = "=0.9.0-pre", optional = true }
cipher = "=0.5.0-pre.4"
ctr = "=0.10.0-pre"
ctr = "=0.10.0-pre.0"
polyval = { version = "=0.7.0-pre.0", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }
Expand All @@ -29,14 +29,14 @@ zeroize = { version = "1", default-features = false }
aead = { version = "=0.6.0-pre.0", features = ["dev"], default-features = false }

[features]
default = ["aes", "alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
default = ["aes", "alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion aes-gcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version = "1.65"
aead = { version = "=0.6.0-pre.0", default-features = false }
aes = { version = "=0.9.0-pre", optional = true }
cipher = "=0.5.0-pre.4"
ctr = "=0.10.0-pre"
ctr = "=0.10.0-pre.0"
ghash = { version = "=0.6.0-pre.0", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions aes-siv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ aead = "=0.6.0-pre.0"
aes = "=0.9.0-pre"
cipher = "=0.5.0-pre.4"
cmac = "0.8.0-pre"
ctr = "=0.10.0-pre"
ctr = "=0.10.0-pre.0"
dbl = "0.4.0-pre.4"
digest = { version = "0.11.0-pre.8", features = ["mac"] }
zeroize = { version = "1", default-features = false }
Expand All @@ -38,7 +38,7 @@ default = ["alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
Expand Down
4 changes: 2 additions & 2 deletions ccm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rust-version = "1.65"
[dependencies]
aead = { version = "=0.6.0-pre.0", default-features = false }
cipher = { version = "=0.5.0-pre.4", default-features = false }
ctr = { version = "=0.10.0-pre", default-features = false }
ctr = { version = "=0.10.0-pre.0", default-features = false }
subtle = { version = "2", default-features = false }

[dev-dependencies]
Expand All @@ -29,7 +29,7 @@ default = ["alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
4 changes: 2 additions & 2 deletions eax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rust-version = "1.71"
aead = { version = "=0.6.0-pre.0", default-features = false }
cipher = "=0.5.0-pre.4"
cmac = "=0.8.0-pre"
ctr = "=0.10.0-pre"
ctr = "=0.10.0-pre.0"
subtle = { version = "2", default-features = false }

[dev-dependencies]
Expand All @@ -35,7 +35,7 @@ default = ["alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
Expand Down
14 changes: 7 additions & 7 deletions ocb3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.72"
[dependencies]
aead = { version = "=0.6.0-pre.0", default-features = false }
cipher = "=0.5.0-pre.4"
ctr = "=0.10.0-pre"
ctr = "=0.10.0-pre.0"
dbl = "=0.4.0-pre.4"
subtle = { version = "2", default-features = false }
zeroize = { version = "1", optional = true, default-features = false }
Expand All @@ -29,14 +29,14 @@ aes = { version = "=0.9.0-pre", default-features = false }
hex-literal = "0.4"

[features]
default = ["alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
default = ["alloc", "getrandom"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
stream = ["aead/stream"]
stream = ["aead/stream"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit dd83331

Please sign in to comment.