-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 812 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 812 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
[workspace]
members = [
"cookiecluster",
"xtask",
]
resolver = "2"
[workspace.package]
version = "0.14.0"
authors = ["Bryant Biggs <bryantbiggs@gmail.com>"]
documentation = "https://github.com/clowdhaus/cookiecluster"
homepage = "https://github.com/clowdhaus/cookiecluster"
repository = "https://github.com/clowdhaus/cookiecluster"
license = "Apache-2.0"
edition = "2024"
categories = [
"command-line-utilities",
]
[workspace.dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing = { version = "0.1", default-features = false, features = ["log-always"] }
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std", "ansi"] }
[profile.release]
strip = true
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"