-
Notifications
You must be signed in to change notification settings - Fork 225
/
Cargo.toml
44 lines (39 loc) · 833 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
44
[profile.dev]
panic = "abort"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"
[workspace]
members = [
# The generic hal definitions
"avr-hal-generic",
# MCU HAL crates
"mcu/atmega-hal",
"mcu/attiny-hal",
# Higher level crates
"arduino-hal",
# Examples
"examples/arduino-diecimila",
"examples/arduino-leonardo",
"examples/arduino-mega2560",
"examples/arduino-mega1280",
"examples/arduino-nano",
"examples/arduino-uno",
"examples/atmega2560",
"examples/nano168",
"examples/sparkfun-promicro",
"examples/sparkfun-promini-3v3",
"examples/sparkfun-promini-5v",
"examples/trinket-pro",
"examples/trinket",
]
exclude = [
# The RAVEDUDE! Yeah!
"ravedude",
]
resolver = "2"