aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: efe5c3f3148ccbca4f925f15808a889946508a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test: test-std test-no-std test-serde-no-std test-colors-no-std test-color-new-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-colors-no-std:
	cargo test --no-default-features --features "colors"
test-color-new-no-std:
	cargo test --no-default-features --features "color-new"
test-alloc-no-std:
	cargo test --no-default-features --features "alloc"