From cad0b0a3664211960dfe6e81ff9afe91934a0eba Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Thu, 5 Feb 2026 16:39:19 +0000 Subject: add rust validator --- validators/rust/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 validators/rust/Cargo.toml (limited to 'validators/rust/Cargo.toml') diff --git a/validators/rust/Cargo.toml b/validators/rust/Cargo.toml new file mode 100644 index 0000000..1515a60 --- /dev/null +++ b/validators/rust/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "gitinfo-validator" +version = "0.1.0" +edition = "2021" +description = "CLI validator for .gitinfo files" +license = "MIT" + +[[bin]] +name = "validate" +path = "src/main.rs" + +[dependencies] +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +json_comments = "0.2" +regex = "1.10" -- cgit v1.2.3