-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathCargo.toml
43 lines (40 loc) · 829 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
[workspace]
resolver = "2"
members = [
"crates/rqbit",
"crates/librqbit",
"crates/buffers",
"crates/clone_to_owned",
"crates/bencode",
"crates/sha1w",
"crates/librqbit_core",
"crates/peer_binary_protocol",
"crates/dht",
"crates/upnp",
"crates/tracker_comms",
"crates/upnp-serve",
"desktop/src-tauri",
]
# Everything except desktop
default-members = [
"crates/rqbit",
"crates/librqbit",
"crates/buffers",
"crates/clone_to_owned",
"crates/bencode",
"crates/sha1w",
"crates/librqbit_core",
"crates/peer_binary_protocol",
"crates/dht",
"crates/upnp",
"crates/tracker_comms",
"crates/upnp-serve",
]
[profile.release]
panic = "abort"
debug = true
lto = "thin"
[profile.release-github]
inherits = "release"
debug = false
lto = false