Skip to content

Commit

Permalink
Would it work with 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Aug 1, 2024
1 parent 548e742 commit 9d532bc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- stable
- beta
- nightly
- 1.70.0 # MSRV
- 1.64.0 # MSRV

name: tests/${{ matrix.rust }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name = "ndarray"
version = "0.15.6"
edition = "2018"
rust-version = "1.70"
rust-version = "1.64"
authors = [
"Ulrik Sverdrup \"bluss\"",
"Jim Turner"
Expand Down
9 changes: 7 additions & 2 deletions xtest-serialization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ default-features = false
[dev-dependencies.serde_json]
version = "1.0.40"

[dev-dependencies.rmp]
# Old version to work with Rust 1.64+
version = "=0.8.10"

[dev-dependencies.rmp-serde]
version = "0.14.0"
# Old version to work with Rust 1.64+
version = "0.14"

[dependencies.ron]
version = "0.5.1"
version = "0.8.1"
optional = true

0 comments on commit 9d532bc

Please sign in to comment.