From 92670ec92b555383fc31cf42b15d4ea38f8e9c8f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 17 Mar 2026 14:47:25 +0800 Subject: Extract build-time generation code into separate crate --- gen/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gen/Cargo.toml (limited to 'gen/Cargo.toml') diff --git a/gen/Cargo.toml b/gen/Cargo.toml new file mode 100644 index 0000000..186082b --- /dev/null +++ b/gen/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "jv_cli_gen" +edition = "2024" +version.workspace = true + +[dependencies] +just_fmt = "0.1.2" + +tokio = { version = "1", features = ["rt", "rt-multi-thread"] } +chrono = "0.4" +toml = "0.9" +regex = "1.12" +just_template = "0.1.3" -- cgit