-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (52 loc) · 1.18 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
[workspace]
members = [
"rtc",
"video",
"compressor",
"cap",
"platform_utils"
]
resolver = "2"
rust-version = "1.75"
edition = "2021"
[workspace.package]
edition = "2021"
authors = ["Noor Chat"]
rust-version = "1.75"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
log = "0.4"
serde_json = "1"
thiserror = "1"
url = "2"
[profile.dev]
# Make compilation faster on macOS
split-debuginfo = "unpacked"
opt-level = 0
debug = 0
strip = "none"
lto = false
codegen-units = 256
incremental = true
# Set the settings for build scripts and proc-macros.
[profile.dev.build-override]
opt-level = 3
# Set the default for dependencies, except workspace members.
[profile.dev.package."*"]
opt-level = 3
incremental = false
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true
opt-level = "s"
strip = true # Remove debug symbols
# Optimize for speed
[profile.release.package.webrtc-audio-processing]
opt-level = 3
[profile.release.package.str0m]
opt-level = 3
[profile.release.package.cap]
opt-level = 3
[profile.release.package.cpal]
opt-level = 3