-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
24 lines (21 loc) · 1023 Bytes
/
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
[package]
name = "esp32c3_ota_experiment"
version = "0.1.0"
authors = ["bjoernQ <bjoern.quentin@mobile-j.de>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
esp32c3-hal = "0.10.0"
esp-wifi = { git = "https://github.com/esp-rs/esp-wifi.git", features = ["esp32c3", "embedded-svc", "wifi"], rev = "37dd9ed7ae07a86f7afaef34fa4cbb48ad41b210" }
smoltcp = { version = "0.10.0", default-features=false, features = ["proto-igmp", "proto-ipv4", "socket-tcp", "socket-icmp", "socket-udp", "medium-ethernet", "proto-dhcpv4", "socket-raw", "socket-dhcpv4"] }
embedded-svc = { version = "0.25.1", default-features = false}
log = "0.4.16"
embedded-hal = "0.2"
esp-println = {version="0.5.0", features = [ "esp32c3", "uart", "log"] }
esp-backtrace = {version="0.7.0", features = [ "esp32c3", "print-uart", "panic-handler"] }
esp-storage = { version = "0.2.0", features = ["esp32c3"] }
embedded-storage = "0.3.0"
crc = "3.0.0"
embedded-io = "0.4.0"
heapless = "0.7.16"
partitions-macro = { path = "./partitions-macro" }