forked from mullvad/mullvadvpn-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (25 loc) · 786 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
[workspace]
members = [
"android/translations-converter",
"mullvad-daemon",
"mullvad-cli",
"mullvad-setup",
"mullvad-problem-report",
"mullvad-jni",
"mullvad-paths",
"mullvad-types",
"mullvad-rpc",
# "mullvad-tests",
"mullvad-exclude",
"talpid-openvpn-plugin",
"talpid-core",
"mullvad-management-interface",
]
exclude = ["dist-assets/binaries/shadowsocks-rust"]
[profile.release]
# FIXME: This is here as a temporary hack to stop the mullvad-daemon from segfaulting
# on Windows. Can hopefully be removed after we have replaced OpenSSL with Rustls.
# https://github.com/mullvad/mullvadvpn-app/pull/1438
# Other opt-levels that stops the daemon from crashing include 0 and 1. Crashes has
# only been detected on 2.
opt-level = "s"