Improve version string.

This commit is contained in:
Gav Wood 2016-02-01 17:57:22 +01:00
parent 78e514b527
commit fdd42ae537
3 changed files with 4 additions and 1 deletions

View File

@ -28,3 +28,4 @@ sha3 = { path = "sha3" }
serde = "0.6.7"
clippy = "0.0.37"
json-tests = { path = "json-tests" }
target_info = "0.1.0"

View File

@ -34,6 +34,7 @@
//! sudo make install
//! ```
extern crate target_info;
extern crate slab;
extern crate rustc_serialize;
extern crate mio;

View File

@ -7,6 +7,7 @@ use std::ops::*;
use mio::*;
use mio::tcp::*;
use mio::udp::*;
use target_info::Target;
use hash::*;
use crypto::*;
use sha3::Hashable;
@ -280,7 +281,7 @@ impl<Message> Host<Message> where Message: Send + Sync + Clone {
config: config,
nonce: H256::random(),
protocol_version: 4,
client_version: "parity".to_owned(),
client_version: format!("Parity/{}/{}-{}-{}", env!("CARGO_PKG_VERSION"), Target::arch(), Target::env(), Target::os()),
listen_port: 0,
capabilities: Vec::new(),
}),