mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-11-14 10:07:04 +00:00
15 lines
366 B
Rust
15 lines
366 B
Rust
//! *A crate for implementing Zcash light clients.*
|
|
//!
|
|
//! `zcash_client_backend` contains Rust structs and traits for creating shielded Zcash
|
|
//! light clients.
|
|
|
|
// Catch documentation errors caused by code changes.
|
|
#![deny(intra_doc_link_resolution_failure)]
|
|
|
|
pub mod constants;
|
|
pub mod encoding;
|
|
pub mod keys;
|
|
pub mod proto;
|
|
pub mod wallet;
|
|
pub mod welding_rig;
|