ckb-std 0.1.1

This library contains serveral modules help you write CKB contract with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![feature(asm)]

extern crate alloc;

pub mod global_alloc;
pub mod ckb_constants;
pub mod debug;
pub mod entry;
pub mod syscalls;
pub mod since;
#[cfg(feature = "libc")]
pub mod libc_alloc_wrap;
#[cfg(feature = "buddy-alloc")]
pub use buddy_alloc;