diff options
author | iximeow <me@iximeow.net> | 2024-06-23 01:59:12 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2024-06-23 01:59:12 -0700 |
commit | b6070a6fa4cde012028f6d74c94436c86d79df43 (patch) | |
tree | 127f9813f92850c758a8d8cc9f0d3158adfce5ea /Makefile | |
parent | 0357471015bbbe54023a6b729d4d13361d8835b8 (diff) |
deprecate ShowContextual, document changes to colors/color_new modules
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -test: test-std test-no-std test-serde-no-std test-alloc-no-std +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 @@ -6,5 +6,9 @@ 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" |