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

Commit 81d9766

Browse files
committed
Raise minimum supported Rust version to 1.25.0.
The `backtrace` crate has this as a minimum required version since 0.3.13.
1 parent 6ffb645 commit 81d9766

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: rust
22
rust:
3-
- 1.18.0
3+
- 1.25.0
44
- stable
55
- beta
66
- nightly

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ path = "./failure_derive"
1515

1616
[dependencies.backtrace]
1717
optional = true
18-
version = "=0.3.9"
18+
version = "0.3.3"
1919

2020
[workspace]
2121
members = [".", "failure_derive"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ pub fn read_toolchains(path: PathBuf) -> Result<Toolchains, Error>
100100
## Requirements
101101

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

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

0 commit comments

Comments
 (0)