Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Commit

Permalink
Raise minimum supported Rust version to 1.25.0.
Browse files Browse the repository at this point in the history
The `backtrace` crate has this as a minimum required version since
0.3.13.
  • Loading branch information
azriel91 committed Dec 16, 2018
1 parent 6ffb645 commit 16a4e97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
language: rust
rust:
- 1.18.0
- 1.25.0
- stable
- beta
- nightly
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "./failure_derive"

[dependencies.backtrace]
optional = true
version = "=0.3.9"
version = "0.3.13"

[workspace]
members = [".", "failure_derive"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -100,8 +100,8 @@ pub fn read_toolchains(path: PathBuf) -> Result<Toolchains, Error>
## Requirements

Both failure and failure_derive are intended to compile on all stable versions
of Rust newer than 1.18.0, as well as the latest beta and the latest nightly.
If either crate fails to compile on any version newer than 1.18.0, please open
of Rust newer than 1.25.0, as well as the latest beta and the latest nightly.
If either crate fails to compile on any version newer than 1.25.0, please open
an issue.

failure is **no_std** compatible, though some aspects of it (primarily the
Expand Down

0 comments on commit 16a4e97

Please sign in to comment.