51 lines
1.5 KiB
Rust
51 lines
1.5 KiB
Rust
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of OpenEthereum.
|
|
|
|
// 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.
|
|
|
|
// 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
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
extern crate rustc_version;
|
|
extern crate toml;
|
|
extern crate vergen;
|
|
|
|
use std::{env, fs::File, io::Write, path::Path};
|
|
use vergen::{vergen, OutputFns};
|
|
|
|
const ERROR_MSG: &'static str = "Failed to generate metadata files";
|
|
|
|
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,
|
|
),
|
|
);
|
|
}
|
|
|
|
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);
|
|
}
|