Use proper method for pinning MSRV minimal package versions

This commit is contained in:
Ashley Anderson 2022-07-06 00:29:58 -04:00
parent 74bf971080
commit b39871c4ac
2 changed files with 3 additions and 4 deletions

View File

@ -186,6 +186,9 @@ jobs:
for PROJ in ${PROJECTS[@]}; do
cargo update --manifest-path "$PROJ/Cargo.toml" -p parking_lot --precise 0.11.0
done
cargo update -p plotters --precise 0.3.1
cargo update -p plotters-svg --precise 0.3.1
cargo update -p plotters-backend --precise 0.3.2
- name: Build docs
run: cargo doc --no-deps --no-default-features --features "full ${{ matrix.extra_features }}"

View File

@ -51,10 +51,6 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.61"
rayon = "1.0.2"
widestring = "0.5.1"
# plotters via criterion, 0.3.2 requires edition: 2021 (Rust 1.56)
plotters = { version = "=0.3.1", default-features = false }
plotters-backend = { version = "=0.3.2", default-features = false }
plotters-svg = { version = "=0.3.1", default-features = false }
[build-dependencies]
pyo3-build-config = { path = "pyo3-build-config", version = "0.16.5", features = ["resolve-config"] }