Merge pull request #1347 from Skgland/min-rust-version
Set minimum rust version in Cargo.toml
This commit is contained in:
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
@@ -38,3 +38,13 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --verbose --all --no-default-features --features num
|
args: --verbose --all --no-default-features --features num
|
||||||
|
msrv:
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install cargo-msrv
|
||||||
|
uses: baptiste0928/cargo-install@v1.1.0
|
||||||
|
with:
|
||||||
|
crate: cargo-msrv
|
||||||
|
- name: Verify MSRV
|
||||||
|
run: cargo msrv --verify
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ license = "BSD-3-Clause"
|
|||||||
keywords = ["prolog", "prolog-interpreter", "prolog-system"]
|
keywords = ["prolog", "prolog-interpreter", "prolog-system"]
|
||||||
categories = ["command-line-utilities"]
|
categories = ["command-line-utilities"]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
rust-version = "1.57"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["crates/num-rug-adapter",
|
members = ["crates/num-rug-adapter",
|
||||||
@@ -72,4 +73,4 @@ predicates-core = "1.0.2"
|
|||||||
serial_test = "0.5.1"
|
serial_test = "0.5.1"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
debug = true
|
debug = true
|
||||||
|
|||||||
Reference in New Issue
Block a user