blob: aa38b87097ae9ff78b0c68303acf7ca659af89c2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | test: test-std test-no-std test-serde-no-std test-alloc-no-std
test-std:
	cargo test
test-no-std:
	cargo test --no-default-features
test-serde-no-std:
	cargo test --no-default-features --features "serde"
test-alloc-no-std:
	cargo test --no-default-features --features "alloc"
 |