Files
librustzcash/zcash_client_backend/src/lib.rs
2019-08-22 12:49:22 +01:00

12 lines
267 B
Rust

//! *A crate for implementing Zcash light clients.*
//!
//! `zcash_client_backend` contains Rust structs and traits for creating shielded Zcash
//! light clients.
pub mod constants;
pub mod encoding;
pub mod keys;
pub mod proto;
pub mod wallet;
pub mod welding_rig;