Update binaries

This commit is contained in:
NikVolf 2018-12-17 12:59:16 +03:00
parent 4fc0cbf934
commit dee2651ad2
14 changed files with 33 additions and 33 deletions

48
Cargo.lock generated
View File

@ -914,7 +914,30 @@ dependencies = [
]
[[package]]
name = "pbtc"
name = "percent-encoding"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "primitives"
version = "0.1.0"
dependencies = [
"bigint 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-hex 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pulldown-cmark"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pzec"
version = "0.1.0"
dependencies = [
"app_dirs 1.2.1 (git+https://github.com/paritytech/app-dirs-rs)",
@ -939,29 +962,6 @@ dependencies = [
"verification 0.1.0",
]
[[package]]
name = "percent-encoding"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "primitives"
version = "0.1.0"
dependencies = [
"bigint 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-hex 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pulldown-cmark"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "quick-error"
version = "1.2.1"

View File

@ -1,5 +1,5 @@
[package]
name = "pbtc"
name = "pzec"
version = "0.1.0"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
@ -39,8 +39,8 @@ panic = 'abort'
debug = true
[[bin]]
path = "pbtc/main.rs"
name = "pbtc"
path = "pzec/main.rs"
name = "pzec"
[workspace]
members = ["bencher"]

View File

@ -1,7 +1,7 @@
name: pbtc
name: pzec
version: "0.1.0"
author: Parity Technologies <info@parity.io>
about: Parity zcash client
about: Parity Zcash client
args:
- testnet:
long: testnet

View File

@ -46,7 +46,7 @@ impl BlockNotifier {
let err = system(c_command.as_ptr());
if err != 0 {
error!(target: "pbtc", "Block notification command {} exited with error code {}", command, err);
error!(target: "pzec", "Block notification command {} exited with error code {}", command, err);
}
}
},
@ -55,7 +55,7 @@ impl BlockNotifier {
}
}
}
trace!(target: "pbtc", "Block notification thread stopped");
trace!(target: "pzec", "Block notification thread stopped");
}
}

View File

@ -32,7 +32,7 @@ mod rpc_apis;
use app_dirs::AppInfo;
pub const APP_INFO: AppInfo = AppInfo { name: "pbtc", author: "Parity" };
pub const APP_INFO: AppInfo = AppInfo { name: "pzec", author: "Parity" };
pub const PROTOCOL_VERSION: u32 = 70_014;
pub const PROTOCOL_MINIMUM: u32 = 70_001;
pub const ZCASH_PROTOCOL_VERSION: u32 = 170_007;

View File

@ -9,7 +9,7 @@ cargo doc --no-deps\
-p message\
-p miner\
-p network\
-p pbtc\
-p pzec\
-p p2p\
-p primitives\
-p rpc\