-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 700 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
[package]
name = "create-o7-app"
authors = ["Ottomated"]
version = "0.13.4"
edition = "2021"
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
crossterm = "0.29.0"
directories = "6.0.0"
dunce = "1.0.4"
human-repr = "1.1.0"
inquire = "0.9.1"
once_cell = "1.19.0"
pathdiff = "0.2.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
ureq = { version = "3.0.4", features = ["json"], default-features = false }
which = "8.0.0"
[build-dependencies]
template_builder = { path = "./template_builder" }
[dev-dependencies]
tempfile = "3.10.1"
itertools = "0.14.0"
[profile.release]
opt-level = 's' # Optimize for size
lto = true
strip = true