mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
Bisect to determine MSRV.
This commit is contained in:
parent
a32a92798a
commit
18323afd63
3 changed files with 11 additions and 3 deletions
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
|
@ -71,18 +71,18 @@ jobs:
|
|||
args: --features "serde"
|
||||
|
||||
msrv:
|
||||
name: Current MSRV is 1.54
|
||||
name: Current MSRV is 1.41
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: 1.54
|
||||
toolchain: 1.41
|
||||
override: true
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: test
|
||||
command: build
|
||||
|
||||
bench:
|
||||
name: Check that benchmarks compile
|
||||
|
|
|
|||
|
|
@ -105,6 +105,10 @@ To install, add the following to your project's `Cargo.toml`:
|
|||
x25519-dalek = "1.1"
|
||||
```
|
||||
|
||||
# MSRV
|
||||
|
||||
Current MSRV is 1.41 for production builds, and 1.48 for running tests.
|
||||
|
||||
# Documentation
|
||||
|
||||
Documentation is available [here](https://docs.rs/x25519-dalek).
|
||||
|
|
|
|||
|
|
@ -127,6 +127,10 @@
|
|||
//! x25519-dalek = "1.1"
|
||||
//! ```
|
||||
//!
|
||||
//! # MSRV
|
||||
//!
|
||||
//! Current MSRV is 1.41 for production builds, and 1.48 for running tests.
|
||||
//!
|
||||
//! # Documentation
|
||||
//!
|
||||
//! Documentation is available [here](https://docs.rs/x25519-dalek).
|
||||
|
|
|
|||
Loading…
Reference in a new issue