inkpad_browser/
lib.rs

1mod result;
2mod ri;
3mod runtime;
4mod ti;
5mod tree;
6
7// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
8// allocator.
9#[global_allocator]
10static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
11
12pub use self::{
13    result::{Error, Result},
14    ri::Interface,
15    runtime::Runtime,
16    ti::Transaction,
17    tree::Tree,
18};