Skip to content

Commit

Permalink
Rename zcash_wallet to zcash_client_backend, set to 2018 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Jun 27, 2019
1 parent 3b6f5e3 commit fae919e
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ members = [
"librustzcash",
"pairing",
"sapling-crypto",
"zcash_client_backend",
"zcash_primitives",
"zcash_proofs",
"zcash_wallet",
"zip32",
]

Expand Down
3 changes: 2 additions & 1 deletion zcash_wallet/Cargo.toml → zcash_client_backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "zcash_wallet"
name = "zcash_client_backend"
version = "0.0.0"
authors = [
"Jack Grigg <[email protected]>",
]
edition = "2018"

[dependencies]
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions zcash_wallet/README.md → zcash_client_backend/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
12 changes: 12 additions & 0 deletions zcash_client_backend/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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);
}
}
7 changes: 0 additions & 7 deletions zcash_wallet/src/lib.rs

This file was deleted.

0 comments on commit fae919e

Please sign in to comment.