taproot_assets/lib.rs
1//! High-level convenience API for Taproot Assets.
2//!
3//! Re-export low-level crates and.
4
5#![cfg_attr(not(feature = "std"), no_std)]
6
7/// Re-export of taproot-assets-core for backend implementations.
8pub use taproot_assets_core as core;
9
10#[cfg(feature = "rpc")]
11pub use taproot_assets_rpc as rpc;
12
13/// Host-side verification helpers backed by bitcoin/secp256k1.
14pub mod verify;