Skip to content

Commit

Permalink
chacha20+salsa20: cut pre.1 prereleases
Browse files Browse the repository at this point in the history
Cuts the following prereleases:
- `chacha20` v0.10.0-pre.1
- `salsa20` v0.11.0-pre.1
  • Loading branch information
tarcieri committed Jul 27, 2024
1 parent 3f83d76 commit 17ae454
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions chacha20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chacha20"
version = "0.10.0-pre"
version = "0.10.0-pre.1"
description = """
The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits
from the RustCrypto `cipher` crate, with optional architecture-specific
Expand All @@ -20,7 +20,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
cfg-if = "1"
cipher = { version = "=0.5.0-pre.6", optional = true}
cipher = { version = "=0.5.0-pre.6", optional = true }
rand_core = { version = "0.9.0-alpha.1", optional = true, default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
zeroize = { version = "1.8.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion salsa20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "salsa20"
version = "0.11.0-pre" # Also update html_root_url in lib.rs when bumping this
version = "0.11.0-pre.1"
description = "Salsa20 Stream Cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 1 addition & 2 deletions salsa20/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/salsa20/0.10.2"
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
)]
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]

Expand Down

0 comments on commit 17ae454

Please sign in to comment.