interstice_abi/lib.rs
1mod authority;
2mod codec;
3mod context;
4mod error;
5mod host_calls;
6mod interstice_type;
7mod interstice_type_def;
8mod interstice_value;
9mod row;
10mod schema;
11
12pub use authority::*;
13pub use codec::*;
14pub use context::*;
15pub use error::*;
16pub use host_calls::*;
17pub use interstice_abi_macros;
18pub use interstice_type::*;
19pub use interstice_type_def::*;
20pub use interstice_value::*;
21pub use row::*;
22pub use schema::*;
23
24pub const ABI_VERSION: u16 = 6;