forked from cargo-generate/cargo-generate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (62 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "cargo-generate"
description = "cargo, make me a project"
version = "0.13.0"
authors = [
"Ashley Williams <[email protected]>"
]
license = "MIT/Apache-2.0"
repository = "https://github.com/cargo-generate/cargo-generate"
edition = "2021"
include = ["src/**/*", "LICENSE-*", "*.md"]
[dependencies]
console = "0.15"
dialoguer = "0.10"
dirs = "4.0"
indicatif = "0.16"
git2 = "0.13"
libgit2-sys = "0.12"
tempfile = "3.3"
regex = "1.5"
heck = "0.4"
liquid = "0.23"
liquid-core = "0.23"
liquid-lib = "0.23"
liquid-derive = "0.23"
walkdir = "2.3"
remove_dir_all = "0.7"
ignore = "0.4"
url = "2.2"
structopt = "0.3"
anyhow = "1.0"
toml = "0.5"
thiserror = "1.0"
home = "0.5"
sanitize-filename = "0.3"
rhai = "1.3"
path-absolutize = "3.0"
git-config = "0.1.11"
[dependencies.openssl]
version = "0.10"
optional = true
[dependencies.semver]
version = "1.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
predicates = "2.1"
assert_cmd = "2.0"
indoc = "1.0"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["prepush-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"]
[features]
vendored-openssl = ['openssl/vendored']
[[bin]]
path = "src/main.rs"
name = "cargo-generate"
[profile.release]
lto = true