esp-hal/xtensa-lx/Cargo.toml
Jesse Braham e33b060734
Add xtensa-lx and xtensa-lx-rt packages (#1813)
* Add the `xtensa-lx` package

* Add the `xtensa-lx-rt` and `xtensa-lx-rt-proc-macros` packages

* Exclude new packages from workspace, add to `xtask::Package`

* rustfmt

* clippy
2024-07-17 08:32:52 +00:00

25 lines
692 B
TOML

[package]
name = "xtensa-lx"
version = "0.9.0"
edition = "2021"
rust-version = "1.65"
description = "Low-level access to Xtensa LX processors and peripherals"
repository = "https://github.com/esp-rs/esp-hal"
license = "MIT OR Apache-2.0"
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["lx", "peripheral", "register", "xtensa"]
links = "xtensa-lx"
[package.metadata.docs.rs]
features = ["spin"]
[dependencies]
bare-metal = "1.0.0"
document-features = "0.2.8"
mutex-trait = "0.2.0"
spin = { version = "0.9.8", optional = true }
[features]
## Use the [spin] package for synchronization
spin = ["dep:spin"]