Skip to content

Commit

Permalink
Bump p256 and p384 to v0.11; MSRV 1.57 (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Dec 11, 2022
1 parent 4088e35 commit 8e1c19c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ring-compat.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.57.0 # MSRV
- stable
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.56.0 # MSRV
toolchain: 1.57.0 # MSRV
components: clippy
override: true
- run: cargo clippy --all --all-features -- -D warnings
50 changes: 25 additions & 25 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/RustCrypto/ring-compat"
categories = ["cryptography", "no-std"]
keywords = ["aead", "digest", "crypto", "ring", "signature"]
edition = "2021"
rust-version = "1.56"
rust-version = "1.57"

[dependencies]
generic-array = { version = "0.14", default-features = false }
Expand All @@ -23,10 +23,10 @@ ring = { version = "0.16", default-features = false }
# optional features
aead = { version = "0.5", optional = true, default-features = false }
digest = { version = "0.10", optional = true }
ecdsa = { version = "0.13", optional = true, default-features = false }
ecdsa = { version = "0.14", optional = true, default-features = false }
ed25519 = { version = "1.4", optional = true, default-features = false }
p256 = { version = "0.10", optional = true, default-features = false, features = ["ecdsa-core"] }
p384 = { version = "0.9", optional = true, default-features = false, features = ["ecdsa"] }
p256 = { version = "0.11", optional = true, default-features = false, features = ["ecdsa-core"] }
p384 = { version = "0.11", optional = true, default-features = false, features = ["ecdsa-core"] }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -15,7 +15,7 @@ algorithm implementations from [*ring*].

## Minimum Supported Rust Version

**Rust 1.56** or higher.
**Rust 1.57** or higher.

In the future the minimum supported Rust version can be changed, but it will be
done with a minor version bump.
Expand Down Expand Up @@ -43,7 +43,7 @@ dual licensed as above, without any additional terms or conditions.
[docs-link]: https://docs.rs/ring-compat/
[docs-link]: https://docs.rs/ring-compat
[ring-image]: https://img.shields.io/badge/ring-0.16-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.57+-blue.svg
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260488-ring-compat
Expand Down

0 comments on commit 8e1c19c

Please sign in to comment.