-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
60 lines (50 loc) · 1.77 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
[package]
name = "twatch-idf-rs"
version = "0.1.0"
authors = ["Pierre-Yves Aillet <pyaillet@gmail.com>"]
edition = "2021"
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"
incremental = true
[features]
native = ["esp-idf-sys/native"]
[dependencies]
# general
anyhow = {version = "1", features = ["backtrace"]}
mutex-trait = { version = "0.2" }
bitmask-enum = { version = "1.1" }
num_enum = { version = "0.5" }
byte-slice-cast = { version = "^1.2" }
log = "0.4"
# platform
esp-idf-sys = { version = "^0.31", features = ["binstart", "std", "native"] }
esp-idf-svc = { version = "^0.42", features = ["experimental"] }
esp-idf-hal = { version = "^0.38" }
# hal
embedded-svc = "0.22.1"
embedded-hal = "=1.0.0-alpha.8"
embedded-hal-0-2 = { package = "embedded-hal", version = "0.2", features = ["unproven"] }
embedded-graphics-core = { version = "^0.3" }
embedded-graphics = { version = "^0.7" }
embedded-graphics-framebuf = { git = "https://github.com/pyaillet/embedded-graphics-framebuf.git", rev = "62cc6e1" }
#embedded-graphics-framebuf = { version = "^0.2" }
profont = { version = "^0.5" }
u8g2-fonts = "0.2.0"
#display-interface-spi = { version = "^0.4" }
display-interface-spi = { version = "0.4", git = "https://github.com/therealprof/display-interface.git", rev = "d61f3e7" }
shared-bus = { version = "^0.2", features = ["std"] }
accelerometer = { version = "^0.12" }
# drivers
bma423 = { version = "0.0.1" }
#mipidsi = { version = "^0.3" }
mipidsi = { git = "https://github.com/pyaillet/mipidsi.git", rev = "d830e40" }
axp20x = { version = "0.0.1" }
pcf8563 = { version = "^0.1" }
ft6x36 = { version = "^0.4", features = [ "event_process" ] }
[build-dependencies]
embuild = "0.29.1"
anyhow = "1"