* Update package dependencies and bump version numbers * Update `CHANGELOG.md` for each package to be published * Remember to update `xtensa-lx-rt` too :) * Add and use TrapFrame::new() in esp-wifi * Bump `xtensa-lx-rt` by minor instead of patch, as there are breaking changes --------- Co-authored-by: Dániel Buga <bugadani@gmail.com>
35 lines
915 B
TOML
35 lines
915 B
TOML
[package]
|
|
name = "esp-ieee802154"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
rust-version = "1.76.0"
|
|
description = "Low-level IEEE 802.15.4 driver for the ESP32-C6 and ESP32-H2"
|
|
repository = "https://github.com/esp-rs/esp-hal"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
default-target = "riscv32imac-unknown-none-elf"
|
|
features = ["esp32c6"]
|
|
|
|
[lib]
|
|
bench = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
byte = "0.2.7"
|
|
critical-section = "1.1.3"
|
|
document-features = "0.2.10"
|
|
esp-hal = { version = "0.20.0", path = "../esp-hal" }
|
|
esp-wifi-sys = "0.4.0"
|
|
heapless = "0.8.0"
|
|
ieee802154 = "0.6.1"
|
|
log = "0.4.22"
|
|
vcell = "0.1.3"
|
|
|
|
[features]
|
|
esp32c6 = ["esp-hal/esp32c6", "esp-wifi-sys/esp32c6"]
|
|
esp32h2 = ["esp-hal/esp32h2", "esp-wifi-sys/esp32h2"]
|
|
|
|
## Output logging from the PHY blobs. Requires nightly.
|
|
binary-logs = []
|