serde_json = "1"
quick-xml = { version = "0.30.0", features = [ "serialize" ] }
tera = "1.8.0"
+clap = { version = "4.4.5", features = ["derive"] }
[dev-dependencies]
config = "0.13"
use serde::Deserialize;
use serde_derive::Deserialize;
+use clap::Parser;
+
+/// Convert libzakform xml file to zakform rust code
+#[derive(Parser, Debug)]
+#[command(author, version, about, long_about = None)]
+struct Args {
+ /// libzakform xml input file
+ #[arg(short, long)]
+ input_file: String,
+
+ /// zakform rust code file
+ #[arg(short, long)]
+ output_file: String,
+}
+
#[derive(Default, Debug, Clone, PartialEq, Deserialize)]
#[serde(default, rename = "zakform")]
pub struct ZakForm {
}
fn main() {
- let formfile = env::args().nth(1).expect("no form file given");
+ let args = Args::parse();
- let content = fs::read_to_string(formfile).expect("something went wrong reading the file");
+ let content = fs::read_to_string(args.input_file).expect("something went wrong reading the file");
let form: ZakForm = from_str(&content).unwrap();