ic_kit_sys/lib.rs
1//! This crate provides the bindings to the Internet Computer runtime that can work in wasm
2//! environments, and also provides ability to mock this methods for non-wasm envs, this is
3//! part of the Psychedelic's Canister Development kit, [IC-Kit](https://github.com/psychedelic/ic-kit).
4//!
5//! This is a low level crate, and we don't recommend you to use this directly, and encourage you
6//! to look at ic-kit itself.
7
8/// System APIs exposed by the Internet Computer's WASM runtime.
9pub mod ic0;
10
11/// The common types related to the system API.
12pub mod types;