-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 789 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 789 Bytes
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
[workspace]
members = [
"balboa-spa-messages",
"balboa-tools",
"common-lib",
"mock-mainboard-lib",
"mock-topside-panel-app",
"test-esp8266_spa-app",
"topside-panel-lib",
"wifi-module-lib",
]
exclude = [
# Note that we exclude the ESP app as esp-idf-svc/hal have a lot of funky
# unconventional build rules that don't mesh very well with everything else.
# Build and test that stuff entirely manually and separate, but move
# all of the interesting logic into the other crates.
"esp32-app",
]
[profile.release]
panic = 'abort'
[profile.dev]
panic = 'abort'
[patch.crates-io]
lvgl = { path = "/home/jasta/software/lvgl-rs/lvgl" }
lvgl-sys = { path = "/home/jasta/software/lvgl-rs/lvgl-sys" }
lvgl-codegen = { path = "/home/jasta/software/lvgl-rs/lvgl-codegen" }