ckb-contract-std 0.1.3-pre

This library contains serveral modules that could help you write CKB contract with Rust
Documentation
TARGET := riscv64imac-unknown-none-elf

default: integration

integration: check test

test:
	make -C test test

check:
	cargo check --target ${TARGET} --examples

install-tools:
	cargo install --git https://github.com/xxuejie/ckb-binary-patcher.git

.PHONY: test check