forked from cargo-bins/cargo-binstall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (61 loc) · 1.4 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
72
73
[workspace]
resolver = "2"
members = [
"crates/atomic-file-install",
"crates/bin",
"crates/binstalk",
"crates/binstalk-bins",
"crates/binstalk-fetchers",
"crates/binstalk-registry",
"crates/binstalk-manifests",
"crates/binstalk-types",
"crates/binstalk-downloader",
"crates/cargo-toml-workspace",
"crates/detect-wasi",
"crates/fs-lock",
"crates/normalize-path",
"crates/detect-targets",
"crates/binstalk-git-repo-api",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"
[profile.release.build-override]
inherits = "dev.build-override"
[profile.release.package."tokio-tar"]
opt-level = "z"
[profile.release.package."binstall-tar"]
opt-level = "z"
[profile.dev]
opt-level = 0
debug = true
lto = false
debug-assertions = true
overflow-checks = true
codegen-units = 32
# Set the default for dependencies on debug.
[profile.dev.package."*"]
opt-level = 3
[profile.dev.package."tokio-tar"]
opt-level = "z"
[profile.dev.package."binstall-tar"]
opt-level = "z"
[profile.dev.build-override]
inherits = "dev"
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
[profile.check-only]
inherits = "dev"
debug = false
debug-assertions = false
overflow-checks = false
panic = "abort"
[profile.check-only.build-override]
inherits = "check-only"
[profile.check-only.package."*"]
inherits = "check-only"