-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (46 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
48 lines (46 loc) · 1.52 KB
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
[workspace]
resolver = "3"
members = [
"crates/buttplug",
"crates/buttplug_client",
"crates/buttplug_client_in_process",
"crates/buttplug_core",
"crates/buttplug_server",
"crates/buttplug_server_device_config",
"crates/buttplug_server_hwmgr_btleplug",
"crates/buttplug_server_hwmgr_hid",
"crates/buttplug_server_hwmgr_lovense_connect",
"crates/buttplug_server_hwmgr_lovense_dongle",
"crates/buttplug_server_hwmgr_serial",
"crates/buttplug_server_hwmgr_websocket",
"crates/buttplug_server_hwmgr_webbluetooth",
"crates/buttplug_server_hwmgr_xinput",
"crates/buttplug_tests",
"crates/buttplug_transport_websocket_tungstenite",
"crates/buttplug_wasm",
"crates/intiface_engine",
"examples",
]
# Exclude WASM-only crates from native builds — they require wasm32 target.
default-members = [
"crates/buttplug",
"crates/buttplug_client",
"crates/buttplug_client_in_process",
"crates/buttplug_core",
"crates/buttplug_server",
"crates/buttplug_server_device_config",
"crates/buttplug_server_hwmgr_btleplug",
"crates/buttplug_server_hwmgr_hid",
"crates/buttplug_server_hwmgr_lovense_connect",
"crates/buttplug_server_hwmgr_lovense_dongle",
"crates/buttplug_server_hwmgr_serial",
"crates/buttplug_server_hwmgr_websocket",
"crates/buttplug_server_hwmgr_xinput",
"crates/buttplug_tests",
"crates/buttplug_transport_websocket_tungstenite",
"crates/intiface_engine",
"examples",
]
[profile.release]
lto = true
codegen-units = 1