stoml 0.1.0

Standalone TOML parsing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.POSIX:

CARGO = cargo

all:

test:
	$(CARGO) test --release

# This assumes `toml-test` is in $PATH (https://github.com/toml-lang/toml-test)
toml-test:
	$(CARGO) build --release --example toml_test_decoder
	toml-test ./target/release/examples/toml_test_decoder

.PHONY: all test toml-test