edn-rs 0.17.2

Crate to parse and emit EDN
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
integration:
	cargo test --test lib --no-fail-fast --features "json"

unit:
	cargo test  --no-fail-fast --lib --features "json"

.PHONY: examples
examples:
	cargo test --examples --no-fail-fast
	cargo test --example json_to_edn --features "json"
	cargo test --example edn_to_json --features "json"
	cargo run --example async --features "async"

doc-tests:
	cargo test --doc

test: unit integration examples doc-tests