From 9163c3ae5b55abcb27f15dd39203143b8e1e443b Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 12 Dec 2025 14:30:45 +0100 Subject: Initial implementation --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 "] + +[dependencies] + +[dev-dependencies] +criterion = "0.8.1" + +[[bench]] +name = "parse" +harness = false + +[lints.clippy] +pedantic = "warn" -- cgit