mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +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"
|
||||
|
||||
msrv:
|
||||
name: Current MSRV is 1.41
|
||||
name: Current MSRV is 1.51
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: 1.41
|
||||
toolchain: 1.51
|
||||
override: true
|
||||
- uses: actions-rs/cargo@v1
|
||||
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
|
||||
# importing the serde dependency and enabling the curve25519-dalek/serde feature
|
||||
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]
|
||||
bincode = "1"
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ x25519-dalek = "2.0.0-pre.0"
|
|||
|
||||
# MSRV
|
||||
|
||||
Current MSRV is 1.41 for production builds, and 1.48 for running tests.
|
||||
Current MSRV is 1.51.
|
||||
|
||||
# Documentation
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue