-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (58 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
65 lines (58 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "pixels-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
esp-hal = { version = "1.0.0", features = [
"esp32s3",
"log-04",
"unstable",
"psram",
] }
esp-rtos = { version = "0.2.0", features = [
"embassy",
"esp-alloc",
"esp-radio",
"esp32s3",
"log-04",
] }
esp-bootloader-esp-idf = { version = "0.4.0", features = ["esp32s3", "log-04"] }
log = "0.4.28"
embedded-io = "0.7.1"
embedded-io-async = "0.7.0"
esp-alloc = "0.9.0"
esp-backtrace = { version = "0.18.1", features = [
"esp32s3",
"panic-handler",
"println",
] }
esp-println = { version = "0.16.1", features = ["esp32s3", "log-04"] }
# for more networking protocol support see https://crates.io/crates/edge-net
embassy-executor = { version = "0.9.1", features = ["log"] }
embassy-time = { version = "0.5.1", features = ["log"] }
embassy-futures = { version = "0.1.1" }
mipidsi = { version = "0.10.0" }
drivers = { git = "https://github.com/psytraxx/s3-display-amoled-touch-rs.git", tag = "v0.14.1", package = "drivers", features = [
"log-04",
"async",
] }
embedded-graphics = { version = "0.8.2", features = [] }
embedded-hal = { version = "1.0.0", features = [] }
micromath = { version = "2.1.0", features = ["vector", "quaternion"] }
static_cell = { version = "2.1.1", features = ["nightly"] }
embedded-hal-bus = { version = "0.3.0", features = ["async"] }
num-traits = { version = "0.2.19", default-features = false, features = [
"libm",
] }
[profile.dev]
# Rust debug is too slow.
# For debug builds always builds with some optimization
opt-level = "s"
[profile.release]
codegen-units = 1 # LLVM can perform better optimizations using a single thread
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 's'
overflow-checks = false