forked from oxidecomputer/hubris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
99 lines (83 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
cargo-features = ["resolver"]
[workspace]
members = [
"build/i2c",
"build/util",
"build/xtask",
"sys/abi",
"sys/kern",
"sys/userlib",
"sys/num-tasks",
"lib/fixedmap",
"lib/gnarle",
"lib/hypocalls",
"lib/ringbuf",
"app/demo-stm32f4-discovery",
"app/demo-stm32h7-nucleo",
"app/gemini-bu",
"app/gemini-bu-rot",
"app/gimlet",
"app/gimlet-rot",
"app/gimletlet",
"app/lpc55xpresso",
"app/sidecar",
"task/template",
"task/jefe",
"task/ping",
"task/pong",
"task/idle",
"task/hiffy",
"task/power",
"task/spd",
"task/thermal",
"drv/stm32fx-rcc",
"drv/stm32fx-usart",
"drv/stm32h7-gpio",
"drv/stm32h7-gpio-api",
"drv/stm32h7-rcc",
"drv/stm32h7-rcc-api",
"drv/stm32h7-spi",
"drv/stm32h7-spi-server",
"drv/stm32h7-usart",
"drv/stm32h7-i2c-server",
"drv/stm32h7-qspi",
"drv/lpc55-romapi",
"drv/lpc55-syscon",
"drv/lpc55-syscon-api",
"drv/lpc55-iocon-gen",
"drv/lpc55-gpio",
"drv/lpc55-gpio-api",
"drv/lpc55-usart",
"drv/lpc55-i2c",
"drv/lpc55-spi",
"drv/lpc55-spi-server",
"drv/lpc55-rng",
"drv/user-leds",
"drv/user-leds-api",
"drv/ice40-spi-program",
"drv/gimlet-seq-server",
"drv/gimlet-hf-server",
"drv/gimlet-hf-api",
"test/tests-gemini-bu",
"test/tests-gemini-bu-rot",
"test/tests-stm32fx",
"test/tests-stm32h7",
"test/tests-lpc55xpresso",
"test/test-runner",
"test/test-assist",
"test/test-suite",
"stage0",
]
default-members = []
resolver = "2"
[profile.release]
codegen-units = 1 # better optimizations
debug = 2 # symbols are nice and they don't increase the size on Flash
lto = true # better optimizations
opt-level = "z" # smaller optimizations
[profile.dev]
opt-level = 1 # no optimizations was just too painful in terms of flash size
[patch."https://github.com/oxidecomputer/hubris".userlib]
path = "sys/userlib"
[patch."https://github.com/oxidecomputer/hubris".abi]
path = "sys/abi"