2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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,
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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/>.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
//! Parity version specific information.
|
2016-02-01 15:22:42 +01:00
|
|
|
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
extern crate parity_bytes as bytes;
|
2017-12-22 14:37:39 +01:00
|
|
|
extern crate rlp;
|
2020-08-05 06:08:03 +02:00
|
|
|
extern crate target_info;
|
2017-12-22 14:37:39 +01:00
|
|
|
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::Bytes;
|
2017-12-22 14:37:39 +01:00
|
|
|
use rlp::RlpStream;
|
2020-08-05 06:08:03 +02:00
|
|
|
use target_info::Target;
|
2016-01-14 21:24:16 +01:00
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
mod vergen {
|
2020-08-05 06:08:03 +02:00
|
|
|
#![allow(unused)]
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/version.rs"));
|
2018-02-08 12:38:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
mod generated {
|
2020-08-05 06:08:03 +02:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/meta.rs"));
|
2018-02-08 12:38:56 +01:00
|
|
|
}
|
2016-02-21 21:14:09 +01:00
|
|
|
|
2016-12-17 14:36:30 +01:00
|
|
|
#[cfg(feature = "final")]
|
2020-08-14 12:24:16 +02:00
|
|
|
const THIS_TRACK: &'static str = "stable";
|
|
|
|
// ^^^ should be reset in Cargo.toml to "stable"
|
2016-12-17 14:36:30 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "final"))]
|
|
|
|
const THIS_TRACK: &'static str = "unstable";
|
|
|
|
// ^^^ This gets used when we're not building a final release; should stay as "unstable".
|
|
|
|
|
2016-11-22 10:24:22 +01:00
|
|
|
/// Get the platform identifier.
|
|
|
|
pub fn platform() -> String {
|
2020-08-05 06:08:03 +02:00
|
|
|
let env = Target::env();
|
|
|
|
let env_dash = if env.is_empty() { "" } else { "-" };
|
|
|
|
format!("{}-{}{}{}", Target::arch(), Target::os(), env_dash, env)
|
2016-11-13 15:52:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 20:00:45 +01:00
|
|
|
/// Get the standard version string for this software.
|
|
|
|
pub fn version() -> String {
|
2020-08-05 06:08:03 +02:00
|
|
|
let sha3 = vergen::short_sha();
|
|
|
|
let sha3_dash = if sha3.is_empty() { "" } else { "-" };
|
|
|
|
let commit_date = vergen::commit_date().replace("-", "");
|
|
|
|
let date_dash = if commit_date.is_empty() { "" } else { "-" };
|
|
|
|
format!(
|
2020-09-22 14:53:52 +02:00
|
|
|
"OpenEthereum/v{}-{}{}{}{}{}/{}/rustc{}",
|
2020-08-05 06:08:03 +02:00
|
|
|
env!("CARGO_PKG_VERSION"),
|
|
|
|
THIS_TRACK,
|
|
|
|
sha3_dash,
|
|
|
|
sha3,
|
|
|
|
date_dash,
|
|
|
|
commit_date,
|
|
|
|
platform(),
|
|
|
|
generated::rustc_version()
|
|
|
|
)
|
2016-03-01 16:58:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the standard version data for this software.
|
|
|
|
pub fn version_data() -> Bytes {
|
2020-08-05 06:08:03 +02:00
|
|
|
let mut s = RlpStream::new_list(4);
|
|
|
|
let v = (env!("CARGO_PKG_VERSION_MAJOR")
|
|
|
|
.parse::<u32>()
|
|
|
|
.expect("Environment variables are known to be valid; qed")
|
|
|
|
<< 16)
|
|
|
|
+ (env!("CARGO_PKG_VERSION_MINOR")
|
|
|
|
.parse::<u32>()
|
|
|
|
.expect("Environment variables are known to be valid; qed")
|
|
|
|
<< 8)
|
|
|
|
+ env!("CARGO_PKG_VERSION_PATCH")
|
|
|
|
.parse::<u32>()
|
|
|
|
.expect("Environment variables are known to be valid; qed");
|
|
|
|
s.append(&v);
|
2020-09-22 14:53:52 +02:00
|
|
|
s.append(&"OpenEthereum");
|
2020-08-05 06:08:03 +02:00
|
|
|
s.append(&generated::rustc_version());
|
|
|
|
s.append(&&Target::os()[0..2]);
|
|
|
|
s.out()
|
2016-09-05 17:41:34 +02:00
|
|
|
}
|
2016-12-11 22:47:43 +01:00
|
|
|
|
|
|
|
/// Provide raw information on the package.
|
|
|
|
pub fn raw_package_info() -> (&'static str, &'static str, &'static str) {
|
2020-08-05 06:08:03 +02:00
|
|
|
(THIS_TRACK, env!["CARGO_PKG_VERSION"], vergen::sha())
|
2017-01-25 18:51:41 +01:00
|
|
|
}
|