-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 862 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
[package]
name = "dashcam-rs"
version = "0.4.0"
authors = ["Ben Brown <[email protected]>"]
edition = "2018"
[profile.release]
# Don't optimize too aggressively, messes up application timing
opt-level = 1
[features]
# Specify QQVGA with the flag: "--features qqvga", otherwise QVGA is used
qqvga = []
[dependencies]
# Device support
cortex-m = "0.6.0"
cortex-m-rt = "0.6.10"
# Runtime support
heapless = "0.5.5"
cortex-m-rtic = "0.5.5"
embedded-graphics = "0.6.1"
rtt-target = { version = "0.2.2", features = ["cortex-m"] }
# HAL
embedded-hal = "0.2.3"
stm32-fmc = { version = "0.2.0", features = ["sdram"] }
# Use version 0.3.0 when it is released, for now update commit hash as needed
[dependencies.stm32f7xx-hal]
git = "https://github.com/stm32-rs/stm32f7xx-hal"
rev = "690a898327b27ecd236ae6b8d9ba395eb889bc38"
features = ["rt", "fmc", "stm32f746"]