-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 1.05 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
[package]
edition = "2021"
name = "std-esp8266"
version = "0.1.0"
description = "Example using a USB-to-Serial adapter + ESP8266 adapter in a STD environment"
keywords = ["std", "wifi", "networking", "cloud"]
[dependencies]
log = "0.4"
env_logger = "0.9"
esp8266-at-driver = { path = "../../" }
embedded-io = { version = "0.4.0", features = ["async", "std", "futures"] }
static_cell = "1"
embassy-time = { version = "0.1.0", default-features = false, features = ["std", "nightly"] }
embassy-executor = { version = "0.1.0", default-features = false, features = ["std", "integrated-timers", "nightly"] }
rand = "0.8"
cfg-if = "1.0.0"
embedded-hal = "=1.0.0-alpha.9"
embedded-hal-async = "=0.2.0-alpha.0"
embedded-nal-async = "0.4.0"
async-io = "1.6.0"
nix = "0.22.1"
futures = { version = "0.3.17" }
libc = "0.2.101"
[patch.crates-io]
embassy-time = { git = "https://github.com/embassy-rs/embassy.git", rev = "645fb66a5122bdc8180e0e65d076ca103431a426"}
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", rev = "645fb66a5122bdc8180e0e65d076ca103431a426"}