Temporarily delete unused zebra-cli and zebra-client crates (#6726)
This commit is contained in:
parent
9badcb5f2b
commit
943d213490
|
@ -5787,14 +5787,6 @@ dependencies = [
|
|||
"zebra-test",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zebra-cli"
|
||||
version = "0.0.0-placeholder.0"
|
||||
|
||||
[[package]]
|
||||
name = "zebra-client"
|
||||
version = "1.0.0-beta.0"
|
||||
|
||||
[[package]]
|
||||
name = "zebra-consensus"
|
||||
version = "1.0.0-beta.24"
|
||||
|
|
|
@ -2,13 +2,11 @@
|
|||
members = [
|
||||
"zebrad",
|
||||
"zebra-chain",
|
||||
"zebra-cli",
|
||||
"zebra-network",
|
||||
"zebra-state",
|
||||
"zebra-script",
|
||||
"zebra-consensus",
|
||||
"zebra-rpc",
|
||||
"zebra-client",
|
||||
"zebra-node-services",
|
||||
"zebra-test",
|
||||
"zebra-utils",
|
||||
|
|
|
@ -139,10 +139,6 @@ into several components:
|
|||
node, which connects these components together and implements logic to handle
|
||||
inbound requests from peers and the chain sync process.
|
||||
|
||||
- `zebra-rpc` and `zebra-client` will eventually contain the RPC and wallet
|
||||
functionality, but as mentioned above, our goal is to implement replication
|
||||
of chain state first before asking users to entrust Zebra with their funds.
|
||||
|
||||
All of these components can be reused as independent libraries, and all
|
||||
communication between stateful components is handled internally by
|
||||
[internal asynchronous RPC abstraction](https://docs.rs/tower/)
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
[package]
|
||||
# Crate metadata
|
||||
name = "zebra-cli"
|
||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.0.0-placeholder.0"
|
||||
repository = "https://github.com/ZcashFoundation/zebra"
|
||||
description = "A zcash client for zebrad"
|
||||
|
||||
# Settings that impact compilation
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
|
@ -1,4 +0,0 @@
|
|||
//! A Zebra Zcash node client.
|
||||
|
||||
/// A stub for the main command.
|
||||
fn main() {}
|
|
@ -1,10 +0,0 @@
|
|||
[package]
|
||||
name = "zebra-client"
|
||||
version = "1.0.0-beta.0"
|
||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
|
@ -1,5 +0,0 @@
|
|||
//! A Zebra wallet client
|
||||
|
||||
#![doc(html_favicon_url = "https://zfnd.org/wp-content/uploads/2022/03/zebra-favicon-128.png")]
|
||||
#![doc(html_logo_url = "https://zfnd.org/wp-content/uploads/2022/03/zebra-icon.png")]
|
||||
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_client")]
|
Loading…
Reference in New Issue