Add validator and flattened map generator

This commit is contained in:
Wataru Otsubo 2025-02-21 15:47:34 +00:00
parent 605228e2b5
commit f8c653a1cc
8 changed files with 426 additions and 6 deletions

View file

@ -20,6 +20,7 @@ path = "src/lib.rs"
anyhow = { version = "1.0", optional = true }
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
csv = { version = "1.3.1", optional = true }
env_logger = { version = "0.11", optional = true }
heck = "0.5"
hex = "0.4"
@ -38,3 +39,4 @@ vergen-gitcl = { version = "1.0", features = ["build", "cargo", "rustc", "si"] }
[features]
bin = ["anyhow", "env_logger"]
flatmap = ["csv"]