Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.14.0"
authors = ["haraldmaida"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.82.0"
rust-version = "1.85.1"
repository = "https://github.com/innoave/asserting"
readme = "README.md"

Expand Down
13 changes: 13 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]

# MSRV of the project

msrv := "1.85.1"

alias b := build
alias c := check
alias cc := code-coverage
Expand All @@ -14,6 +18,7 @@ alias t := test
alias ta := test-all-features
alias td := test-default
alias tn := test-no-std
alias msrv := check-msrv

# list recipies
default:
Expand Down Expand Up @@ -90,3 +95,11 @@ clean:
# generate and open docs locally
doc $RUSTDOCFLAGS="--cfg docsrs":
cargo +nightly doc --all-features --no-deps --open

# installs the MSRV toolchain
setup-msrv:
rustup toolchain install {{ msrv }} --profile minimal

# check the production code with MSRV (without tests or dev-dependencies)
check-msrv: setup-msrv
rustup run {{ msrv }} cargo check --lib
Loading