Skip to content

Commit db87a2e

Browse files
committed
Use universal-hash v0.5.0-pre; bump crate versions to -pre
1 parent 2d315ab commit db87a2e

7 files changed

Lines changed: 20 additions & 31 deletions

File tree

Cargo.lock

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ghash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghash"
3-
version = "0.4.4" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.5.0-pre" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """
@@ -17,7 +17,7 @@ edition = "2021"
1717

1818
[dependencies]
1919
opaque-debug = "0.3"
20-
polyval = { version = "0.5.1", path = "../polyval" }
20+
polyval = { version = "=0.6.0-pre", path = "../polyval" }
2121

2222
# optional dependencies
2323
zeroize = { version = "1", optional = true, default-features = false }

ghash/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
#![no_std]
2626
#![doc(
2727
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
28-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
29-
html_root_url = "https://docs.rs/ghash/0.4.3"
28+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
3029
)]
3130
#![warn(missing_docs, rust_2018_idioms)]
3231

poly1305/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poly1305"
3-
version = "0.7.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.8.0-pre" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = "The Poly1305 universal hash function and message authentication code"
@@ -14,17 +14,12 @@ edition = "2021"
1414

1515
[dependencies]
1616
opaque-debug = "0.3"
17-
#universal-hash = { version = "0.5", default-features = false }
17+
universal-hash = { version = "=0.5.0-pre", default-features = false }
1818
zeroize = { version = "1", optional = true, default-features = false }
1919

2020
[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2121
cpufeatures = "0.2"
2222

23-
[dependencies.universal-hash]
24-
git = "https://github.com/RustCrypto/traits"
25-
rev = "74ce6e7a9ab1243f574b6c37e747a6e54c01f376"
26-
default-features = false
27-
2823
[dev-dependencies]
2924
hex-literal = "0.3"
3025

poly1305/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
#![no_std]
4545
#![doc(
4646
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
47-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
48-
html_root_url = "https://docs.rs/poly1305/0.7.1"
47+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
4948
)]
5049
#![warn(missing_docs, rust_2018_idioms)]
5150

polyval/Cargo.toml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polyval"
3-
version = "0.5.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.6.0-pre" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """
@@ -18,23 +18,18 @@ edition = "2021"
1818
[dependencies]
1919
cfg-if = "1"
2020
opaque-debug = "0.3"
21-
#universal-hash = { version = "0.5", default-features = false }
21+
universal-hash = { version = "=0.5.0-pre", default-features = false }
2222
zeroize = { version = "1", optional = true, default-features = false }
2323

2424
[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2525
cpufeatures = "0.2"
2626

27-
[dependencies.universal-hash]
28-
git = "https://github.com/RustCrypto/traits"
29-
rev = "74ce6e7a9ab1243f574b6c37e747a6e54c01f376"
30-
default-features = false
31-
3227
[dev-dependencies]
3328
hex-literal = "0.3"
3429

3530
[features]
36-
std = ["universal-hash/std"]
37-
armv8 = [] # Enable nightly-only ARMv8 intrinsics support
31+
std = ["universal-hash/std"]
32+
armv8 = [] # Enable nightly-only ARMv8 intrinsics support
3833
force-soft = [] # Disable support for hardware intrinsics
3934

4035
[package.metadata.docs.rs]

polyval/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@
7878
#![cfg_attr(all(feature = "armv8", target_arch = "aarch64"), feature(stdsimd))]
7979
#![doc(
8080
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
81-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
82-
html_root_url = "https://docs.rs/polyval/0.5.3"
81+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
8382
)]
8483
#![warn(missing_docs, rust_2018_idioms)]
8584

0 commit comments

Comments
 (0)