-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
46 lines (34 loc) · 987 Bytes
/
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
[workspace]
resolver = "2"
members = [
"octasine",
"octasine-cli",
"xtask"
]
# [patch.'https://github.com/RustAudio/baseview']
# baseview = { path = "../baseview" }
# [patch.'https://github.com/BillyDM/iced_baseview']
# iced_baseview = { path = "../iced_baseview" }
# [patch.'https://github.com/iced-rs/iced_audio']
# [patch.crates-io]
# iced_audio = { path = "../iced_audio" }
# [patch.'https://github.com/greatest-ape/sleef-trig']
# sleef-trig = { path = "../sleef-trig" }
# Same as original repo, but forked for longevity
[patch.'https://github.com/nicokoch/reflink.git']
reflink = { git = "https://github.com/greatest-ape/reflink.git", rev = "e8d93b4" }
[profile.release]
debug = false
lto = "thin"
opt-level = 3
[profile.test]
opt-level = 3
[profile.release-debug]
inherits = "release"
debug = true
[profile.bench]
inherits = "release-debug"
[profile.release.package.sleef-trig]
codegen-units = 1
[profile.release-debug.package.sleef-trig]
codegen-units = 1