-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1.12 KB
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
[package]
name = "esp-pulser"
version = "0.6.4"
authors = ["krokosik <krokosik@pm.me>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "esp-pulser"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[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]
default = []
experimental = ["esp-idf-svc/experimental"]
[dependencies]
log = "0.4"
esp-idf-svc = { version = "0.50.0", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
embedded-graphics = "0.8.1"
embedded-svc = "0.28.1"
mipidsi = "0.8.0"
display-interface-spi = "0.5.0"
anyhow = "1.0.95"
bincode = "1.3.3"
serde = { version = "1.0.217", features = ["derive"] }
mime = "0.3.17"
http = "1.2.0"
max3010x = { git = "https://github.com/krokosik/max3010x-rs.git", version = "0.2.0" }
embedded-hal-bus = { features = ["std"], version="0.2.0" }
embedded-hal = "1.0.0"
drv2605 = { git = "https://github.com/krokosik/drv2605.git", version = "0.2.0" }
thiserror = "2.0.12"
[build-dependencies]
embuild = "0.33.0"