-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 1.23 KB
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 1.23 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
[package]
edition = "2021"
name = "m5stack-atom-matrix-rust"
authors = ["Petr Gadorek <hahihula@gmail.com>"]
version = "0.1.0"
[dependencies]
esp-backtrace = { version = "0.14.2", features = ["esp32", "panic-handler", "exception-handler","println"] }
esp_hal = { version = "1.0.0-beta.0", package = "esp-hal" , features = [
"esp32",
"unstable"
]}
esp-println = { version = "0.12.0", features = ["esp32", "log"] }
embedded-graphics = "0.8.1"
sh1106 = "0.5.0"
esp-alloc = "0.7.0"
esp-wifi = {version = "0.13.0", features = ["esp32","wifi","esp-now", "smoltcp"]}
heapless = { version = "0.8.0", default-features = false }
critical-section = "1.2.0"
esp-hal-embassy = { version = "0.7", features=["esp32"] }
embassy-executor = { version = "0.7.0", features = ["task-arena-size-20480"] }
embassy-sync = { version = "0.6.1" }
embassy-time = { version = "0.4.0" }
embassy-time-driver = { version = "0.2.0", features = [ "tick-hz-1_000_000" ] }
embassy-time-queue-utils = { version = "0.1.0", features = ["_generic-queue"] }
smoltcp = { version = "0.12.0", default-features=false, features = [ "proto-ipv4", "socket-tcp", "socket-icmp", "socket-udp", "medium-ethernet", "proto-dhcpv4", "socket-raw", "socket-dhcpv4"] }