diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-02-05 16:39:19 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-02-05 16:39:19 +0000 |
| commit | cad0b0a3664211960dfe6e81ff9afe91934a0eba (patch) | |
| tree | 731cecc411d5682f7805477f207ab40eab4654cd /validators/rust/Cargo.toml | |
| parent | f9584d5777618f860bc3a8ee880f339954092ac0 (diff) | |
| download | gitinfo-cad0b0a3664211960dfe6e81ff9afe91934a0eba.tar gitinfo-cad0b0a3664211960dfe6e81ff9afe91934a0eba.tar.gz gitinfo-cad0b0a3664211960dfe6e81ff9afe91934a0eba.tar.bz2 gitinfo-cad0b0a3664211960dfe6e81ff9afe91934a0eba.tar.xz gitinfo-cad0b0a3664211960dfe6e81ff9afe91934a0eba.zip | |
add rust validator
Diffstat (limited to 'validators/rust/Cargo.toml')
| -rw-r--r-- | validators/rust/Cargo.toml | 16 |
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" |
