-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
38 lines (34 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "cargo-scaffold"
version = "0.14.0"
authors = ["Benjamin Coenen <[email protected]>"]
edition = "2021"
description = "Scaffold and generate an entire stack using a simple toml config file and 'handlebars' templates."
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/iomentum/cargo-scaffold"
keywords = ["scaffold", "generate", "cargo", "templating"]
[dependencies]
anyhow = "1.0"
auth-git2 = "0.5"
clap = { version = "4.4", features = ["derive"]}
serde = { version = "1.0", features = ["derive"] }
dialoguer = "0.11"
handlebars = "5.0"
walkdir = "2.4"
toml = "0.8"
git2 = { version = "0.18", features = ["vendored-openssl"] }
md5 = "0.7"
handlebars_misc_helpers = { version = "0.15", default-features = false, features = ["string", "http_attohttpc", "json"], optional = true }
indicatif = "0.17"
console = "0.15"
globset = "0.4"
shell-words = "1.0"
[[bin]]
path = "src/main.rs"
name = "cargo-scaffold"
[features]
default = ["helpers"]
helpers = ["handlebars_misc_helpers"]
[dev-dependencies]
tempfile = "3.8"