stringmap 0.1.0

An immutable string map with pointers into frozen memory that can be shared between C, Ruby, Python and Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:
	cargo fmt
	@find src/ -type f -name '*.bk' -delete
	cargo build

test:
	cargo test

clean:
	cargo clean -p sharedmap


src/peg.rs: parser.rustpeg
	 peg < $^ > $@