Merge pull request #17 from paritytech/frm

Update binary name and paths
This commit is contained in:
Nikolay Volf 2018-12-18 13:35:11 +03:00 committed by GitHub
commit 5501d46876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 33 additions and 33 deletions

48
Cargo.lock generated
View File

@ -914,7 +914,30 @@ dependencies = [
] ]
[[package]] [[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" version = "0.1.0"
dependencies = [ dependencies = [
"app_dirs 1.2.1 (git+https://github.com/paritytech/app-dirs-rs)", "app_dirs 1.2.1 (git+https://github.com/paritytech/app-dirs-rs)",
@ -939,29 +962,6 @@ dependencies = [
"verification 0.1.0", "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]] [[package]]
name = "quick-error" name = "quick-error"
version = "1.2.1" version = "1.2.1"

View File

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

View File

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

View File

@ -46,7 +46,7 @@ impl BlockNotifier {
let err = system(c_command.as_ptr()); let err = system(c_command.as_ptr());
if err != 0 { 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; 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_VERSION: u32 = 70_014;
pub const PROTOCOL_MINIMUM: u32 = 70_001; pub const PROTOCOL_MINIMUM: u32 = 70_001;
pub const ZCASH_PROTOCOL_VERSION: u32 = 170_007; pub const ZCASH_PROTOCOL_VERSION: u32 = 170_007;

View File

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