simplicity_sys/
lib.rs

1// SPDX-License-Identifier: CC0-1.0
2
3pub mod c_jets;
4pub use c_jets::elements;
5pub use c_jets::CFrameItem;
6
7// Temporary to keep the Haskell-generated code compiling
8pub use c_jets::elements::CTxEnv as CElementsTxEnv;
9
10pub mod alloc;
11pub mod ffi;
12#[cfg(feature = "test-utils")]
13pub mod tests;