build: specify MSRV
This commit is contained in:
parent
890174fd3e
commit
60aa918513
|
@ -9,3 +9,4 @@ keywords = ["memory", "slice", "array"]
|
||||||
categories = ["data-structures"]
|
categories = ["data-structures"]
|
||||||
repository = "https://git.nora.codes/nora/nslice"
|
repository = "https://git.nora.codes/nora/nslice"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
rust-version = "1.56.1"
|
||||||
|
|
|
@ -20,6 +20,11 @@ assert_eq!(minslice.head[0], 1);
|
||||||
assert_eq!(minslice.tail[2], 6);
|
assert_eq!(minslice.tail[2], 6);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## MSRV
|
||||||
|
|
||||||
|
This project supports Rust 1.56.1 and onward.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
This project is licensed MIT.
|
This project is licensed MIT.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
[toolchain]
|
||||||
|
channel = "1.56.1"
|
Loading…
Reference in New Issue