chik-sdk-driver 0.25.0

Driver code for interacting with standard puzzles on the Chik blockchain.
Documentation
// This lint does not have a span, so it's unclear what is causing it
// For context, see https://github.com/rust-lang/rust-clippy/issues/13774
#![allow(clippy::large_stack_arrays)]
#![doc = include_str!("../docs.md")]

mod driver_error;
mod hashed_ptr;
mod layer;
mod layers;
mod primitives;
mod puzzle;
mod spend;
mod spend_context;
mod spend_with_conditions;

pub use driver_error::*;
pub use hashed_ptr::*;
pub use layer::*;
pub use layers::*;
pub use primitives::*;
pub use puzzle::*;
pub use spend::*;
pub use spend_context::*;
pub use spend_with_conditions::*;

#[cfg(feature = "offers")]
mod offers;

#[cfg(feature = "offers")]
pub use offers::*;