-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (39 loc) · 1002 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
45
46
47
48
49
50
51
[package]
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
readme = "README.md"
name = "booster"
version = "0.1.0"
[dependencies]
cortex-m = "0.6.0"
cortex-m-rt = "0.6.10"
panic-halt = "0.2.0"
cortex-m-rtic = "0.5.3"
embedded-hal = "0.2.4"
enum-iterator = "0.6.0"
cortex-m-log = { version = "0.6.1", features = ["log-integration"] }
log = "0.4.8"
shared-bus-rtic = "0.1.2"
[dependencies.stm32f4xx-hal]
version = "0.8.3"
features = ["stm32f407", "rt"]
[dependencies.ad5627]
path = "ad5627"
[dependencies.ads7924]
path = "ads7924"
[dependencies.dac7571]
path = "dac7571"
[dependencies.max6639]
path = "max6639"
[dependencies.max6642]
path = "max6642"
[dependencies.mcp3221]
path = "mcp3221"
[dependencies.microchip-24aa02e48]
path = "microchip-24aa02e48"
[dependencies.tca9548]
path = "tca9548"
[profile.release]
codegen-units = 1 # better optimizations
debug = true # symbols are nice and they don't increase the size on Flash
lto = true # better optimizations