30 lines
634 B
TOML
30 lines
634 B
TOML
[package]
|
|
name = "nac-webdev-init"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["NAC Team"]
|
|
description = "NAC Web项目初始化工具 - 快速创建符合宪法规范的Web应用"
|
|
|
|
[[bin]]
|
|
name = "nac-init-web"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
colored = "2.0"
|
|
indicatif = "0.17"
|
|
dialoguer = "0.11"
|
|
handlebars = "5.0"
|
|
walkdir = "2.0"
|
|
regex = "1.0"
|
|
chrono = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|