mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-09 21:10:44 +00:00
Merge branch 'fix/msrv-1.51' into release/2.0
This commit is contained in:
commit
20d276ac14
3 changed files with 4 additions and 4 deletions
4
.github/workflows/rust.yml
vendored
4
.github/workflows/rust.yml
vendored
|
|
@ -71,14 +71,14 @@ jobs:
|
||||||
args: --features "serde"
|
args: --features "serde"
|
||||||
|
|
||||||
msrv:
|
msrv:
|
||||||
name: Current MSRV is 1.41
|
name: Current MSRV is 1.51
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: 1.41
|
toolchain: 1.51
|
||||||
override: true
|
override: true
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ rand_core = { version = "0.6", default-features = false }
|
||||||
# `serde` is renamed to `our_serde` in order to avoid a name collision between
|
# `serde` is renamed to `our_serde` in order to avoid a name collision between
|
||||||
# importing the serde dependency and enabling the curve25519-dalek/serde feature
|
# importing the serde dependency and enabling the curve25519-dalek/serde feature
|
||||||
our_serde = { package = "serde", version = "1", default-features = false, optional = true, features = ["derive"] }
|
our_serde = { package = "serde", version = "1", default-features = false, optional = true, features = ["derive"] }
|
||||||
zeroize = { version = "=1.3", default-features = false, features = ["zeroize_derive"] }
|
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bincode = "1"
|
bincode = "1"
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ x25519-dalek = "2.0.0-pre.0"
|
||||||
|
|
||||||
# MSRV
|
# MSRV
|
||||||
|
|
||||||
Current MSRV is 1.41 for production builds, and 1.48 for running tests.
|
Current MSRV is 1.51.
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue