zcash_extensions/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3// Catch documentation errors caused by code changes.
4#![deny(rustdoc::broken_intra_doc_links)]
5
6// For workspace compilation reasons, we have this crate in the workspace and just leave
7// it empty if `zfuture` is not enabled.
8
9#[cfg(zcash_unstable = "zfuture")]
10pub mod consensus;
11#[cfg(zcash_unstable = "zfuture")]
12pub mod transparent;