thru-abi-types 0.2.21

ABI type definitions for the Thru blockchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ABI Type Definitions
//!
//! This crate contains the core type definitions for the ABI system.
//! It provides pure data structures for representing ABI schemas without
//! any file I/O or code generation logic.

pub mod expr;
pub mod types;

// Re-export commonly used types at the crate root
pub use expr::*;
pub use types::*;