1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/// Integration with ABCI (gated by `abci` feature).
/// Data structures which implement the [`state::State`](state/trait.State.html)
/// trait.
/// Integration with [merk](https://docs.rs/merk) (gated by `merk` feature).
/// Traits for deterministic encoding and decoding.
///
/// This module is actually just a re-export of the [ed](https://docs.rs/ed)
/// crate.
/// High-level abstractions for state data.
/// Helpers for executing state machine logic.
/// Low-level key/value store abstraction.
// re-exports
pub use *;
pub use Store;
pub use orga_macros as macros;