forked from eruption-project/eruption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
109 lines (103 loc) · 2.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of Eruption.
#
# Eruption is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Eruption is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Eruption. If not, see <http://www.gnu.org/licenses/>.
#
# Copyright (c) 2019-2023, The Eruption Development Team
[workspace]
members = [
"eruption",
"eruptionctl",
"eruption-hwutil",
"eruption-netfx",
"eruption-debug-tool",
"eruption-util",
"eruption-hotplug-helper",
"eruption-audio-proxy",
"eruption-fx-proxy",
"eruption-process-monitor",
"pyroclasm",
"eruption-gui-gtk3",
"eruption-cmd",
"eruption-keymap",
"eruption-macro",
"eruption-watchdog",
"sdk/lib/rust/eruption-rs",
"sdk/lib/rust/liberuption",
"sdk/examples/rust/simple",
]
default-members = [
"eruption",
"eruptionctl",
"eruption-hwutil",
"eruption-netfx",
"eruption-debug-tool",
"eruption-util",
"eruption-hotplug-helper",
"eruption-audio-proxy",
"eruption-fx-proxy",
"eruption-process-monitor",
# "pyroclasm",
"eruption-gui-gtk3",
"eruption-cmd",
"eruption-keymap",
"eruption-macro",
"sdk/lib/rust/eruption-rs",
"sdk/lib/rust/liberuption",
# "sdk/examples/rust/simple",
]
resolver = "2"
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
strip = false
debug-assertions = true
overflow-checks = true
codegen-units = 512
incremental = true
panic = "unwind"
split-debuginfo = "unpacked"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
strip = true
debug-assertions = false
overflow-checks = true
codegen-units = 1
incremental = false
panic = "abort"
split-debuginfo = "unpacked"
[profile.sccache]
inherits = "dev"
opt-level = 0
debug = true
rpath = false
lto = false
strip = false
debug-assertions = true
overflow-checks = true
codegen-units = 512
incremental = false
panic = "unwind"
[profile.profiling]
inherits = "release"
debug = 1
[profile.dev-optimized]
inherits = "dev"
opt-level = 1