summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9ca23eb..e0227a6 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,25 @@
# Chomp
A typed, algebraic parser generator.
+
+# Dependencies
+
+* [`cargo`] build tool for Rust, version 1.51.0 or greater.
+
+`cargo`: https://doc.rust-lang.org/cargo/
+
+# Running tests
+
+To run all tests, execute the following command:
+
+```console
+cargo test --workspace
+```
+
+# Running benchmarks
+
+To run benchmarks, execute the following command:
+
+```console
+cargo benchmark --workspace
+```