Upgrades the edition, with changes primarily performed by `cargo fix --edition`. In order to keep the changes to a minimum, this doesn't include automated idiom fixes (i.e. `cargo fix --edition-idioms`). This is needed to unblock the edition upgrade for the RSA crate: https://github.com/RustCrypto/RSA/pull/135
20 lines
247 B
YAML
20 lines
247 B
YAML
language: rust
|
|
rust:
|
|
- 1.56.0
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
sudo: false
|
|
script:
|
|
- cargo build --verbose
|
|
- ./ci/test_full.sh
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
branches:
|
|
only:
|
|
- master
|
|
- next
|
|
- staging
|
|
- trying
|