Rename zcash_wallet to zcash_client_backend, set to 2018 edition

This commit is contained in:
Jack Grigg 2018-10-22 17:36:23 +01:00
parent 3b6f5e3d5e
commit fae919ec1c
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
8 changed files with 21 additions and 15 deletions

8
Cargo.lock generated
View File

@ -507,6 +507,10 @@ name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "zcash_client_backend"
version = "0.0.0"
[[package]] [[package]]
name = "zcash_primitives" name = "zcash_primitives"
version = "0.0.0" version = "0.0.0"
@ -536,10 +540,6 @@ dependencies = [
"sapling-crypto 0.0.1", "sapling-crypto 0.0.1",
] ]
[[package]]
name = "zcash_wallet"
version = "0.0.0"
[[package]] [[package]]
name = "zip32" name = "zip32"
version = "0.0.0" version = "0.0.0"

View File

@ -6,9 +6,9 @@ members = [
"librustzcash", "librustzcash",
"pairing", "pairing",
"sapling-crypto", "sapling-crypto",
"zcash_client_backend",
"zcash_primitives", "zcash_primitives",
"zcash_proofs", "zcash_proofs",
"zcash_wallet",
"zip32", "zip32",
] ]

View File

@ -1,8 +1,9 @@
[package] [package]
name = "zcash_wallet" name = "zcash_client_backend"
version = "0.0.0" version = "0.0.0"
authors = [ authors = [
"Jack Grigg <jack@z.cash>", "Jack Grigg <jack@z.cash>",
] ]
edition = "2018"
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
# zcash_wallet # zcash_client_backend
This library contains Rust structs and traits for creating shielded Zcash wallets. This library contains Rust structs and traits for creating shielded Zcash light clients.
## License ## License

View File

@ -0,0 +1,12 @@
//! *A crate for implementing Zcash light clients.*
//!
//! `zcash_client_backend` contains Rust structs and traits for creating shielded Zcash
//! light clients.
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

View File

@ -1,7 +0,0 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}