-
Notifications
You must be signed in to change notification settings - Fork 204
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
signature v2.0.0 #1211
Merged
Merged
signature v2.0.0 #1211
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 tasks
Merged
tarcieri
added a commit
to RustCrypto/signatures
that referenced
this pull request
Jan 15, 2023
Release notes: RustCrypto/traits#1211
tarcieri
added a commit
to RustCrypto/signatures
that referenced
this pull request
Jan 15, 2023
Release notes: RustCrypto/traits#1211
tarcieri
added a commit
to RustCrypto/RSA
that referenced
this pull request
Jan 16, 2023
Release notes: RustCrypto/traits#1211
tarcieri
added a commit
to RustCrypto/RSA
that referenced
this pull request
Jan 16, 2023
Release notes: RustCrypto/traits#1211
tarcieri
added a commit
to RustCrypto/SSH
that referenced
this pull request
Jan 17, 2023
Release notes: RustCrypto/traits#1211 This also bumps the following crates: - `dsa` v0.5 - `ed25519-dalek` "2.0" (via git) - `p256` v0.12 - `p384` v0.12 - `rsa` v0.8 (via git)
tarcieri
added a commit
to RustCrypto/SSH
that referenced
this pull request
Jan 17, 2023
Release notes: RustCrypto/traits#1211 This also bumps the following crates: - `dsa` v0.5 - `ed25519-dalek` "2.0" (via git) - `p256` v0.12 - `p384` v0.12 - `rsa` v0.8 (via git)
tony-iqlusion
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Mar 10, 2023
Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211
5 tasks
tony-iqlusion
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Mar 10, 2023
Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211
tony-iqlusion
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Mar 10, 2023
Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211
tony-iqlusion
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Mar 10, 2023
Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211
tony-iqlusion
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Mar 10, 2023
Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211
romac
added a commit
to informalsystems/tendermint-rs
that referenced
this pull request
Apr 4, 2023
* Bump `ed25519` => v2; `k256` => v0.13; `signature` => v2 Bumps all of the above dependencies to their latest versions, which use the new `signature` v2 release: RustCrypto/traits#1211 * Add `patch.crates-io` for fizyk20/generic-array#133 The `generic-array` crate's docs won't build without this, which breaks the docs build in CI * Remove workaround for docs build in CI * Pin docs build to nightly-2023-03-01 It fails on newer versions: https://github.com/informalsystems/tendermint-rs/actions/runs/4602897393/jobs/8132365869?pr=1285 * Add changelog entry --------- Co-authored-by: Romain Ruetschi <romain@informal.systems>
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
SignatureEncoding
trait as a replacement forSignature
trait and the now removedAsRef<[u8]>
bound on signatures (#1141)Keypair
trait which returns owned keys instead of borrowed (#1141)Changed
derive-preview
has been renamed toderive
and stabilized (#1141)digest-preview
renamed todigest
, still unstable (#1210)hazmat-preview
feature stabilized and removed, always on (#1141)rand-preview
renamed torand_core
, still unstable (#1210)std
feature is no longer enabled by default (#1141)Keypair
trait renamed toKeypairRef
(#1141)Keypair
/KeypairRef
(#1141)&mut impl CryptoRngCore
RNG arguments (#1147)Removed
Signature
trait - replaced bySignatureEncoding
(#1141)hazmat-preview
feature, now always on (#1141)