aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2025-12-12 14:30:45 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2025-12-13 21:32:44 +0100
commit9163c3ae5b55abcb27f15dd39203143b8e1e443b (patch)
treeee7760a8e91110812e7e6c90e95fc23ccc443e0f /Cargo.toml
Initial implementationHEAD1.0.0main
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"