-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.03 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
32
33
34
35
36
37
38
[package]
name = "es-wifi-driver"
version = "0.4.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
description = "Driver for the es-wifi adapter from Inventek."
repository = "https://github.com/drogue-iot/es-wifi-driver"
categories = [
"embedded",
"no-std",
"wifi",
"es-wifi",
"iot",
]
[dependencies]
nom = { version = "6", default-features = false }
moveslice = { version = "2.0" }
heapless = "0.7"
futures-intrusive = { version = "0.4", default-features = false }
embassy-time = { version = "0.1.0", default-features = false }
embassy-sync = { version = "0.1.0", default-features = false, features = ["nightly"] }
atomic-polyfill = "1"
defmt = { version = "0.3", optional = true }
embedded-hal = "=1.0.0-alpha.10"
embedded-hal-async = "=0.2.0-alpha.1"
embedded-io = { version = "0.4.0", features = ["async"] }
embedded-nal-async = "0.4.0"
[dev-dependencies]
embassy-executor = { default-features = false, features = ["integrated-timers"], version = "0.2.0" }
[features]
std = ["embassy-time/std"]
default = [ "std" ]