Skip to content

Commit

Permalink
elliptic-curve: bump ff and group to v0.8 releases; MSRV 1.44
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Sep 9, 2020
1 parent c83f980 commit a63da12
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cryptography.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.44.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.44.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/elliptic-curve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.44.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand All @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
rust:
- 1.41.0 # MSRV
- 1.44.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.41.0
toolchain: 1.44.0 # Highest MSRV in repo
components: clippy
- run: cargo clippy --all --all-features -- -D warnings
rustfmt:
Expand Down
41 changes: 35 additions & 6 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ members = [
"stream-cipher",
"universal-hash",
]

[patch.crates-io]
group = { git = "https://github.com/zkcrypto/group.git" }
4 changes: 2 additions & 2 deletions cryptography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ access compatible versions of all traits from the Rust Crypto project.

## Minimum Supported Rust Version

Rust **1.41** or higher.
Rust **1.44** or higher.

Minimum supported Rust version can be changed in the future, but it will be
done with a minor version bump.
Expand Down Expand Up @@ -45,7 +45,7 @@ dual licensed as above, without any additional terms or conditions.
[docs-image]: https://docs.rs/cryptography/badge.svg
[docs-link]: https://docs.rs/cryptography/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.41+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.44+-blue.svg
[build-image]: https://github.com/RustCrypto/traits/workflows/cryptography/badge.svg?branch=master&event=push
[build-link]: https://github.com/RustCrypto/traits/actions?query=workflow%3Acryptography

Expand Down
4 changes: 2 additions & 2 deletions elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ keywords = ["crypto", "ecc", "elliptic", "weierstrass"]

[dependencies]
digest = { version = "0.9", optional = true }
ff = { version = "0.7", default-features = false }
group = { version = "0.7", default-features = false }
ff = { version = "0.8", default-features = false }
group = { version = "0.8", default-features = false }
generic-array = { version = "0.14", default-features = false }
oid = { package = "const-oid", version = "0.1", optional = true }
rand_core = { version = "0.5", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions elliptic-curve/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and public/secret keys composed thereof.

## Minimum Supported Rust Version

All crates in this repository support Rust **1.41** or higher.
Requires Rust **1.44** or higher.

Minimum supported Rust version can be changed in the future, but it will be
done with a minor version bump.
Expand Down Expand Up @@ -46,6 +46,6 @@ dual licensed as above, without any additional terms or conditions.
[docs-image]: https://docs.rs/elliptic-curve/badge.svg
[docs-link]: https://docs.rs/elliptic-curve/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.41+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.44+-blue.svg
[build-image]: https://github.com/RustCrypto/elliptic-curves/workflows/elliptic-curve%20crate/badge.svg?branch=master&event=push
[build-link]: https://github.com/RustCrypto/elliptic-curves/actions?query=workflow%3A%22elliptic-curve+crate%22
2 changes: 1 addition & 1 deletion elliptic-curve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ## Minimum Supported Rust Version
//!
//! Rust **1.41** or higher.
//! Rust **1.44** or higher.
//!
//! Minimum supported Rust version can be changed in the future, but it will be
//! done with a minor version bump.
Expand Down

0 comments on commit a63da12

Please sign in to comment.