28 lines
659 B
Rust
28 lines
659 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(rustdoc::broken_intra_doc_links)]
|
|
// Temporary until we have addressed all Result<T, ()> cases.
|
|
#![allow(clippy::result_unit_err)]
|
|
|
|
pub mod address;
|
|
pub mod data_api;
|
|
mod decrypt;
|
|
pub mod encoding;
|
|
pub mod fees;
|
|
pub mod keys;
|
|
pub mod proto;
|
|
pub mod scan;
|
|
pub mod scanning;
|
|
pub mod wallet;
|
|
pub mod zip321;
|
|
|
|
pub use decrypt::{decrypt_transaction, DecryptedOutput, TransferType};
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate assert_matches;
|