summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Peltier <pierre.peltier@adevinta.com>2019-11-04 11:46:23 +0100
committerAbin Simon <abinsimon10@gmail.com>2019-12-06 11:35:03 +0530
commit2efce04b0aa3b3e2347958bdb4b081b161d6edc9 (patch)
tree7de4635205c74d4ffa71541915a1a9b76caed426
parent820edf97d41d6140f1f19be824e0fd1b15fb03b2 (diff)
Fix the error message for the minimum rust version required
-rw-r--r--build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index 9e4318e..b7933a3 100644
--- a/build.rs
+++ b/build.rs
@@ -22,7 +22,7 @@ fn main() {
Some(true) => {}
// rustc version too small or can't figure it out
_ => {
- writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.31.0").unwrap();
+ writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.33.0").unwrap();
exit(1);
}
}