openethereum/crates/util/version/build.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.5 KiB
Rust
Raw Normal View History

2020-09-22 14:53:52 +02:00
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.
2020-09-22 14:53:52 +02:00
// OpenEthereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2020-09-22 14:53:52 +02:00
// OpenEthereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
2020-09-22 14:53:52 +02:00
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
extern crate rustc_version;
extern crate toml;
extern crate vergen;
2016-02-29 12:29:51 +01:00
use std::{env, fs::File, io::Write, path::Path};
use vergen::{vergen, OutputFns};
2016-02-21 21:14:09 +01:00
const ERROR_MSG: &'static str = "Failed to generate metadata files";
2016-02-21 21:14:09 +01:00
fn main() {
vergen(OutputFns::all()).expect(ERROR_MSG);
let version = rustc_version::version().expect(ERROR_MSG);
create_file(
"meta.rs",
format!(
"
/// Returns compiler version.
pub fn rustc_version() -> &'static str {{
\"{version}\"
}}
",
version = version,
2020-08-05 06:08:03 +02:00
),
);
}
fn create_file(filename: &str, data: String) {
let out_dir = env::var("OUT_DIR").expect(ERROR_MSG);
let dest_path = Path::new(&out_dir).join(filename);
let mut f = File::create(&dest_path).expect(ERROR_MSG);
f.write_all(data.as_bytes()).expect(ERROR_MSG);
2016-02-29 12:29:51 +01:00
}