-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 844 Bytes
/
Copy pathCargo.toml
File metadata and controls
46 lines (40 loc) · 844 Bytes
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
[workspace]
[package]
name = "diecut"
version = "0.3.6"
edition = "2021"
license = "LicenseRef-PolyForm-Shield-1.0.0"
rust-version = "1.75"
description = "A single binary project template generator"
[lib]
name = "diecut"
path = "src/lib.rs"
[[bin]]
name = "diecut"
path = "src/main.rs"
[dependencies]
tera = "1"
clap = { version = "4", features = ["derive"] }
inquire = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
globset = "0.4"
regex-lite = "0.1"
thiserror = "2"
miette = { version = "7", features = ["fancy"] }
walkdir = "2"
console = "0.15"
dirs = "6"
tempfile = "3"
sha2 = "0.10"
fs4 = "0.12"
content_inspector = "0.2"
indexmap = { version = "2.11.4", features = ["serde"] }
[dev-dependencies]
rstest = "0.23"
criterion = "0.5"
serial_test = "3"
[[bench]]
name = "benchmarks"
harness = false