-
Notifications
You must be signed in to change notification settings - Fork 184
Bump aead dependency to v0.6.0-rc.4
#752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Well, this is odd. Several of the doctests started failing when built without the running 2 tests
test aes-gcm-siv/src/lib.rs - (line 213) ... ignored
test aes-gcm-siv/src/lib.rs - (line 174) ... FAILEDIt's not ignoring them in this case for some reason (though curiously, the ones that depend on Also strange is the actual logic doing the feature-based gating didn't change. |
|
Wow, that's super weird, I can get it to succeed by completely inverting the logic: #![cfg_attr(feature = "getrandom", doc = "```ignore")]
#![cfg_attr(not(feature = "getrandom"), doc = "```")]That makes absolutely no sense! |
- Runs tests with `--lib` and adds separate `--doc` step - Run tests with debug builds and adds a separate `--release` step This should test more combinations (both debug and release builds), but largely serves as a workaround for the weirdness happening in #752 where feature-gating seems to be working incorrectly in the doctests.
- Runs tests with `--lib` and adds separate `--doc` step - Run tests with debug builds and adds a separate `--release` step This should test more combinations (both debug and release builds), but largely serves as a workaround for the weirdness happening in #752 where feature-gating seems to be working incorrectly in the doctests.
- Runs tests with `--lib` and adds separate `--doc` step - Run tests with debug builds and adds a separate `--release` step This should test more combinations (both debug and release builds), but largely serves as a workaround for the weirdness happening in #752 where feature-gating seems to be working incorrectly in the doctests.
- Runs tests with `--lib` and adds separate `--doc` step - Run tests with debug builds and adds a separate `--release` step This should test more combinations (both debug and release builds), but largely serves as a workaround for the weirdness happening in #752 where feature-gating seems to be working incorrectly in the doctests.
- Runs tests with `--lib` and adds separate `--doc` step - Run tests with debug builds and adds a separate `--release` step This should test more combinations (both debug and release builds), but largely serves as a workaround for the weirdness happening in #752 where feature-gating seems to be working incorrectly in the doctests.
This is primarily the documentation changes for the newly introduced `Generate` trait which subsumed the previous RNG APIs. See also: - RustCrypto/traits#2096 - RustCrypto/traits#2098
e5c7985 to
224c33d
Compare
This is primarily the documentation changes for the newly introduced
Generatetrait which subsumed the previous RNG APIs.See also:
Generatetrait traits#2096