alloc_cat 1.1.0

a simple allocator for small-to-tiny Wasm projects in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

all: prereq
	cargo build --target wasm32-unknown-unknown
	env RUST_BACKTRACE=1 cargo test -- --nocapture
	env RUST_BACKTRACE=1 cargo test --no-default-features -- --nocapture
	cargo doc --no-deps
	cargo clippy

prereq:
	@(rustup target list --installed | grep -q wasm32-unknown-unknown) || (\
	    echo "(@) Installing wasm target..."; rustup target add wasm32-unknown-unknown\
	)

clean:
	cargo clean
	cargo clean --release