cap_sdk_core/
lib.rs

1//! `cap_core` is a low-level library for interacting with [cap](https://github.com/Psychedelic/cap/) from an IC
2//! canister.
3//!
4//! If you're looking to interact with cap, you may be looking for the `cap_dk` instead.
5
6mod bucket;
7
8pub use bucket::Bucket;
9
10mod index;
11
12pub use index::{GetContractRootError, Index};
13
14mod root;
15
16pub use root::RootBucket;
17
18mod router;
19
20pub use router::Router;
21
22pub use cap_common::*;