aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..aa38b87
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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"