Temporarily delete unused zebra-cli and zebra-client crates (#6726)

This commit is contained in:
teor 2023-05-19 14:45:54 +10:00 committed by GitHub
parent 9badcb5f2b
commit 943d213490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 48 deletions

View File

@ -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"

View File

@ -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",

View File

@ -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/)

View File

@ -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]

View File

@ -1,4 +0,0 @@
//! A Zebra Zcash node client.
/// A stub for the main command.
fn main() {}

View File

@ -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]

View File

@ -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")]