* 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
25 lines
692 B
TOML
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"]
|