ton_core 0.0.9

A collection of types and utilities for interacting with the TON network
Documentation
#[cfg(test)]
mod _test_build_parse;
/// The lowest brick in the library stack
/// Provides the basic types to interact with the TON blockchain:
/// TonHash, TonCell, TonCellRef, CellBuilder, CellParser
///
mod boc;
mod cell_builder;
mod cell_meta;
mod cell_parser;
mod ton_cell;
mod ton_cell_num;
mod ton_cell_utils;
mod ton_hash;

pub use boc::*;
pub use cell_builder::*;
pub use cell_meta::*;
pub use cell_parser::*;
pub use ton_cell::*;
pub use ton_cell_num::*;
pub use ton_cell_utils::*;
pub use ton_hash::*;