Skip to content

Commit 9d532bc

Browse files
committed
Would it work with 1.64
1 parent 548e742 commit 9d532bc

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- stable
5151
- beta
5252
- nightly
53-
- 1.70.0 # MSRV
53+
- 1.64.0 # MSRV
5454

5555
name: tests/${{ matrix.rust }}
5656
steps:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name = "ndarray"
44
version = "0.15.6"
55
edition = "2018"
6-
rust-version = "1.70"
6+
rust-version = "1.64"
77
authors = [
88
"Ulrik Sverdrup \"bluss\"",
99
"Jim Turner"

xtest-serialization/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,14 @@ default-features = false
2121
[dev-dependencies.serde_json]
2222
version = "1.0.40"
2323

24+
[dev-dependencies.rmp]
25+
# Old version to work with Rust 1.64+
26+
version = "=0.8.10"
27+
2428
[dev-dependencies.rmp-serde]
25-
version = "0.14.0"
29+
# Old version to work with Rust 1.64+
30+
version = "0.14"
2631

2732
[dependencies.ron]
28-
version = "0.5.1"
33+
version = "0.8.1"
2934
optional = true

0 commit comments

Comments
 (0)