casperlabs_contract_macro 0.1.0

A set of macros that make up a DSL for smart contract development using the Casperlabs contract runtime environment
Documentation
prepare:
	rustup target add wasm32-unknown-unknown

build-contract:
	cargo build --release -p contract --target wasm32-unknown-unknown

test:
	cargo test

lint:
	cargo fmt
	cargo clippy --all-targets --all -- -D warnings -A renamed_and_removed_lints

clean:
	cargo clean