forked from esp-rs/esp-idf-svc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.73 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
39
40
[package]
name = "esp-idf-svc"
version = "0.43.0"
authors = ["Ivan Markov <[email protected]>"]
edition = "2018"
resolver = "2"
categories = ["embedded", "hardware-support"]
keywords = ["embedded", "svc", "idf", "esp-idf", "esp32"]
description = "Implementation of the embedded-svc traits for ESP-IDF (Espressif's IoT Development Framework)"
repository = "https://github.com/esp-rs/esp-idf-svc"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://esp-rs.github.io/esp-idf-svc/"
rust-version = "1.61"
[features]
default = ["std"]
std = ["alloc", "anyhow/std", "log/std", "esp-idf-sys/std", "esp-idf-hal/std", "embedded-svc/std"]
alloc = ["cstr_core/alloc", "anyhow", "esp-idf-hal/alloc", "embedded-svc/alloc"]
nightly = ["embedded-svc/nightly"]
experimental = ["embedded-svc/experimental"]
embassy-time-driver = ["embassy-time"]
embassy-time-isr-queue = ["embassy-time", "esp-idf-hal/embassy-time"]
[dependencies]
heapless = { version = "0.7", default-features = false }
enumset = { version = "1", default-features = false }
log = { version = "0.4", default-features = false }
cstr_core = "0.2"
uncased = "0.9.6"
anyhow = { version = "1", default-features = false, optional = true } # Only used by the deprecated httpd module
embedded-svc = { version = "0.23", default-features = false, git = "https://github.com/esp-rs/embedded-svc" }
esp-idf-sys = { version = "0.31.9", default-features = false, features = ["native"] }
esp-idf-hal = { version = "0.39", default-features = false, features = ["esp-idf-sys"], git = "https://github.com/esp-rs/esp-idf-hal" }
embassy-time = { version = "0.1", optional = true, features = ["tick-hz-1_000_000"], git = "https://github.com/ivmarkov/embassy" }
[build-dependencies]
embuild = "0.30.3"
anyhow = "1"