vls_protocol/
lib.rs

1#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
2
3extern crate alloc;
4
5mod error;
6pub mod features;
7pub mod model;
8pub mod msgs;
9/// Streaming PSBT
10pub mod psbt;
11pub mod util;
12
13pub use error::{Error, Result};
14pub use serde_bolt;