Document and test the minimum supported Rust version

This commit is contained in:
Cldfire 2017-09-07 12:54:09 -04:00
parent b4d1048d66
commit 944b37fa84
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,8 @@ os:
- osx
language: rust
rust:
# This version is tested to avoid unintentional bumping of the minimum supported Rust version
- 1.20.0
- stable
- beta
- nightly

View File

@ -23,3 +23,9 @@ and this to your crate root:
#[macro_use]
extern crate bitflags;
```
## Rust Version Support
The minimum supported* Rust version is 1.20 due to use of associated constants.
_* As of the current master branch (unreleased)_