Rename binaries until rewrite is finished

This commit is contained in:
Henry de Valence 2019-07-19 10:47:44 -07:00 committed by Deirdre Connolly
parent 6566f0a195
commit f1ae63f0af
27 changed files with 52 additions and 52 deletions

4
Cargo.lock generated
View File

@ -2403,7 +2403,7 @@ dependencies = [
]
[[package]]
name = "zebra_old"
name = "zebrad"
version = "0.1.0"
dependencies = [
"app_dirs 1.2.1 (git+https://github.com/paritytech/app-dirs-rs)",
@ -2429,7 +2429,7 @@ dependencies = [
]
[[package]]
name = "zebrad"
name = "zebrad2"
version = "0.1.0"
dependencies = [
"abscissa 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,5 @@
[workspace]
members = [
"zebra_old",
"zebra-bencher",
"zebra-crypto",
"zebra-chain",
@ -22,6 +21,7 @@ members = [
"zebra-test-data",
"zebra-verification",
"zebrad",
"zebrad2",
]
[patch.crates-io]

View File

@ -1,32 +0,0 @@
[package]
name = "zebra_old"
version = "0.1.0"
license = "GPL-3.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "A consensus-compatible Zcash node client written in Rust."
[dependencies]
app_dirs = { git = "https://github.com/paritytech/app-dirs-rs" }
clap = { version = "2", features = ["yaml"] }
env_logger = "0.6"
libc = "0.2"
log = "0.4"
zebra-db = { path = "../zebra-db" }
zebra-chain = { path = "../zebra-chain" }
zebra-import = { path = "../zebra-import" }
zebra-keys = { path = "../zebra-keys" }
zebra-logs = { path = "../zebra-logs" }
zebra-message = { path = "../zebra-message" }
zebra-network = { path = "../zebra-network" }
zebra-miner = { path = "../zebra-miner" }
zebra-p2p = { path = "../zebra-p2p" }
zebra-primitives = { path = "../zebra-primitives" }
zebra-rpc = { path = "../zebra-rpc" }
zebra-script = { path = "../zebra-script" }
zebra-storage = { path = "../zebra-storage" }
zebra-sync = { path = "../zebra-sync" }
zebra-verification = { path = "../zebra-verification" }
[[bin]]
path = "main.rs"
name = "zebra_old"

View File

@ -1,22 +1,32 @@
[package]
name = "zebrad"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
version = "0.1.0"
edition = "2018"
license = "GPL-3.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
description = "A consensus-compatible Zcash node client written in Rust."
[dependencies]
failure = "0.1"
gumdrop = "0.6"
lazy_static = "1"
serde = { version = "1", features = ["serde_derive"] }
[dependencies.abscissa]
version = "0.1.0"
default-features = false
features = ["application", "signals", "secrets", "time"]
[dev-dependencies.abscissa]
version = "0.1.0"
default-features = false
features = ["testing"]
app_dirs = { git = "https://github.com/paritytech/app-dirs-rs" }
clap = { version = "2", features = ["yaml"] }
env_logger = "0.6"
libc = "0.2"
log = "0.4"
zebra-db = { path = "../zebra-db" }
zebra-chain = { path = "../zebra-chain" }
zebra-import = { path = "../zebra-import" }
zebra-keys = { path = "../zebra-keys" }
zebra-logs = { path = "../zebra-logs" }
zebra-message = { path = "../zebra-message" }
zebra-network = { path = "../zebra-network" }
zebra-miner = { path = "../zebra-miner" }
zebra-p2p = { path = "../zebra-p2p" }
zebra-primitives = { path = "../zebra-primitives" }
zebra-rpc = { path = "../zebra-rpc" }
zebra-script = { path = "../zebra-script" }
zebra-storage = { path = "../zebra-storage" }
zebra-sync = { path = "../zebra-sync" }
zebra-verification = { path = "../zebra-verification" }
[[bin]]
path = "main.rs"
name = "zebrad"

22
zebrad2/Cargo.toml Normal file
View File

@ -0,0 +1,22 @@
[package]
name = "zebrad2"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
version = "0.1.0"
edition = "2018"
[dependencies]
failure = "0.1"
gumdrop = "0.6"
lazy_static = "1"
serde = { version = "1", features = ["serde_derive"] }
[dependencies.abscissa]
version = "0.1.0"
default-features = false
features = ["application", "signals", "secrets", "time"]
[dev-dependencies.abscissa]
version = "0.1.0"
default-features = false
features = ["testing"]

View File

@ -1,6 +1,6 @@
//! Main entry point for Zebrad
use zebrad::application::APPLICATION;
use zebrad2::application::APPLICATION;
/// Boot Zebrad
fn main() {