-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (34 loc) · 1.03 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
[package]
name = "brno-public-transport"
version = "0.1.0"
authors = ["Juraj Sadel <[email protected]>"]
edition = "2018"
resolver = "2"
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[features]
native = ["esp-idf-sys/native"]
[dependencies]
anyhow = {version = "1", features = ["backtrace"]}
esp-idf-sys = { version = "0.31.5", features = ["binstart"] }
esp-idf-svc = { version = "0.41", features = ["experimental"] }
esp-idf-hal = "0.37"
embedded-svc = "0.21"
embedded-hal = "0.2"
embedded-graphics = "0.7"
embedded-text = "0.5.0"
display-interface = "0.4"
display-interface-spi = "0.4"
log = "0.4"
regex = "1"
soup = "0.5.1"
ili9341 = { version = "0.5", git = "https://github.com/yuri91/ili9341-rs" }
time = { version = "0.3.9", features = ["macros", "parsing"]}
[build-dependencies]
embuild = "0.29" #0.28
anyhow = "1"
[patch.crates-io]
parking_lot = { package = "parking_lot", version = "0.12", git = "https://github.com/Amanieu/parking_lot"}