-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
56 lines (53 loc) · 1.41 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
[workspace]
members = [
"child-test-daemon/",
"codegen/",
"common/",
"daemon/",
"native-build-deps/",
"parser/",
"services/apps",
"services/apps/appscmd",
"services/audiovolumemanager",
"services/contacts",
"services/devicecapability",
"services/geckobridge",
"services/libsignal",
"services/powermanager",
"services/procmanager",
"services/settings",
"services/tcpsocket",
"services/test",
"services/time",
"support/android-utils/",
"support/hidl-utils/",
"support/libsignal-sys/",
"support/light/",
"support/power",
"support/sqlite-utils",
"tests/driver",
"tests/apps-test-server",
"vhost/",
]
[patch.crates-io]
# Bump parking-lot and tokio-util
actix = {git = "https://github.com/fabricedesre/actix.git", branch = "parking-lot-0.12"}
# Bump tokio-util
h2 = {git = "https://github.com/fabricedesre/h2.git"}
# Bump base64 and cookie to avoid duplicates.
webdriver = {path = "support/webdriver"}
# Use our fork with the extra feature for vhost
zip = {path = "support/zip"}
# For the sha-1 update
pest = {git = "https://github.com/fabricedesre/pest.git"}
pest_derive = {git = "https://github.com/fabricedesre/pest.git"}
pest_generator = {git = "https://github.com/fabricedesre/pest.git"}
pest_meta = {git = "https://github.com/fabricedesre/pest.git"}
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
lto = true
opt-level = 3
panic = "abort"
rpath = false