-
-
Notifications
You must be signed in to change notification settings - Fork 292
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 903 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 903 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]
resolver = "2"
members = ["git-cliff-core", "git-cliff"]
[workspace.dependencies]
regex = "1.11.1"
glob = "0.3.2"
log = "0.4.21"
secrecy = { version = "0.8.0", features = ["serde"] }
etcetera = "0.11.0"
url = "2.5.3"
reqwest = { version = "0.12.28", default-features = false, features = [
"blocking",
"rustls-tls",
"rustls-tls-native-roots",
"json",
"zstd",
] }
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
strip = true
[profile.bench]
opt-level = 3
debug = true # used by the profiler
strip = false # keep symbols for the profiler
[workspace.lints.clippy]
# NOTE:
# `clippy` is intentionally not configured at the workspace level.
# CLI arguments take precedence over this configuration, which can
# lead to confusing behavior.