aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..3460467
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "wmap-parser"
+version = "1.0.0"
+edition = "2024"
+license = "AGPL-3.0-or-later"
+description = "A parser for wmap formatted Wardley Map files."
+homepage = "https://git.sr.ht/~rbdr/wmap-parser-rust"
+authors = ["Rubén Beltrán del Río <wmap.parser@r.bdr.sh>"]
+
+[dependencies]
+
+[dev-dependencies]
+criterion = "0.8.1"
+
+[[bench]]
+name = "parse"
+harness = false
+
+[lints.clippy]
+pedantic = "warn"