Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
Ensure minimum rustc version in a build script. r=nalexander (#326)
Browse files Browse the repository at this point in the history
Printing out failure to meet rustc version helps users during
setup with a helpful message if using an older rustc.
Rust version checking from http://stackoverflow.com/a/36607492.
  • Loading branch information
jsantell committed Feb 17, 2017
1 parent 896d7f8 commit ec2bbb8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ authors = [
]
name = "mentat"
version = "0.4.0"
build = "build/version.rs"

[build-dependencies]
rustc_version = "0.1.7"

[dependencies]
clap = "2.19.3"
Expand Down
26 changes: 26 additions & 0 deletions build/version.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Copyright 2016 Mozilla
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software distributed
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.

extern crate rustc_version;

use std::io::{self, Write};
use std::process::exit;
use rustc_version::version_matches;

/// MIN_VERSION should be changed when there's a new minimum version of rustc required
/// to build the project.
static MIN_VERSION: &'static str = ">= 1.15.1";

fn main() {
if !version_matches(MIN_VERSION) {
writeln!(&mut io::stderr(), "Mentat requires rustc {}", MIN_VERSION).unwrap();
exit(1);
}
}

0 comments on commit ec2bbb8

Please sign in to comment.