7866ca8d77
Wait a few years and nice things stabilise! • u64::from_ne_bytes([u8; 8]) is stable in 1.32.0 • TryFrom<&[u8]> for [u8; 8] is stable in 1.34.0 (There are other things I’m touching today that also require a more mild MSRV bump, but this is the most I *need* at this time.)
10 lines
177 B
YAML
10 lines
177 B
YAML
language: rust
|
|
rust:
|
|
- 1.34.0
|
|
- nightly
|
|
- stable
|
|
script:
|
|
- if [[ "$(rustc --version)" =~ -(dev|nightly) ]]; then cargo bench; fi
|
|
- cargo test
|
|
- cargo test --release
|