mirror of
https://github.com/esp-rs/esp-idf-hal.git
synced 2025-09-28 12:51:04 +00:00
34 lines
910 B
TOML
34 lines
910 B
TOML
[package]
|
|
name = "esp-idf-hal"
|
|
version = "0.19.1"
|
|
authors = ["sapir <yasapir@gmail.com>", "Ivan Markov <ivan.markov@gmail.com>"]
|
|
edition = "2018"
|
|
categories = ["embedded", "hardware-support"]
|
|
keywords = ["hal", "idf", "esp-idf", "esp32"]
|
|
description = "A Hardware abstraction layer for Espressif's ESP family of microcontrollers based on the ESP-IDF framework."
|
|
repository = "https://github.com/ivmarkov/esp-idf-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
# no xtensa in regular compiler yet
|
|
[package.metadata.docs.rs]
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
|
|
[features]
|
|
default = ["std", "esp-idf-sys"]
|
|
|
|
std = ["esp-idf-sys/std"]
|
|
|
|
ulp = []
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
nb = "0.1.2"
|
|
mutex-trait = "0.2"
|
|
embedded-hal = { version = "0.2", features = ["unproven"] }
|
|
esp-idf-sys = { version = "0.19", optional = true, default-features = false }
|
|
|
|
[build-dependencies]
|
|
embuild = "0.23"
|
|
anyhow = "1"
|