| commit | bc413be957a675ceb60e34049534238bcc08bdd1 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Wed Nov 11 12:13:49 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Wed Nov 11 12:13:49 2020 -0800 |
| tree | a0f3fb9cfdbe88c6199f8a8dd2c244ed1e77c6d8 | |
| parent | 7bb26a76f516daf60c2c343a2b009332507ef723 [diff] |
Raise rustc checked in build script to 1.48
diff --git a/build.rs b/build.rs index 73c6228..ae3ef67 100644 --- a/build.rs +++ b/build.rs
@@ -20,8 +20,8 @@ } if let Some(rustc) = rustc_version() { - if rustc.minor < 43 { - println!("cargo:warning=The cxx crate requires a rustc version 1.43.0 or newer."); + if rustc.minor < 48 { + println!("cargo:warning=The cxx crate requires a rustc version 1.48.0 or newer."); println!( "cargo:warning=You appear to be building with: {}", rustc.version,