aboutsummaryrefslogtreecommitdiff
path: root/validators/rust/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'validators/rust/Cargo.toml')
-rw-r--r--validators/rust/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
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"