mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-29 21:30:39 +00:00

* New package releases * Fix the `CHANGELOG.md` check in CI * `defmt` is annoying * Update documentation index to point to new version, correct release date * Remove docs.rs badge from and update docs link in `README.md` * Silence `clippy` * Fix documentation link in `esp-hal/README.md`
73 lines
3.0 KiB
TOML
73 lines
3.0 KiB
TOML
[package]
|
|
name = "examples"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
aes = "0.8.4"
|
|
cfg-if = "1.0.0"
|
|
critical-section = "1.1.2"
|
|
crypto-bigint = { version = "0.5.5", default-features = false }
|
|
elliptic-curve = { version = "0.13.8", default-features = false, features = ["sec1"] }
|
|
embassy-executor = { version = "0.5.0", features = ["nightly"] }
|
|
embassy-sync = "0.5.0"
|
|
embassy-time = "0.3.0"
|
|
embassy-time-driver = { version = "0.1.0", optional = true }
|
|
embedded-graphics = "0.8.1"
|
|
embedded-hal = "1.0.0"
|
|
embedded-hal-02 = { version = "0.2.7", package = "embedded-hal" }
|
|
embedded-hal-async = "1.0.0"
|
|
embedded-hal-bus = "0.1.0"
|
|
embedded-io-async = "0.6.1"
|
|
esp-alloc = "0.3.0"
|
|
esp-backtrace = { version = "0.11.0", features = ["exception-handler", "panic-handler", "println"] }
|
|
esp-hal = { version = "0.16.0", path = "../esp-hal" }
|
|
esp-hal-smartled = { version = "0.9.0", path = "../esp-hal-smartled", optional = true }
|
|
esp-println = "0.9.0"
|
|
heapless = "0.8.0"
|
|
hex-literal = "0.4.1"
|
|
hmac = { version = "0.12.1", default-features = false }
|
|
lis3dh-async = "0.9.2"
|
|
nb = "1.1.0"
|
|
p192 = { version = "0.13.0", default-features = false, features = ["arithmetic"] }
|
|
p256 = { version = "0.13.2", default-features = false, features = ["arithmetic"] }
|
|
sha2 = { version = "0.10.8", default-features = false}
|
|
smart-leds = "0.4.0"
|
|
ssd1306 = "0.8.4"
|
|
static_cell = { version = "2.0.0", features = ["nightly"] }
|
|
usb-device = "0.3.2"
|
|
usbd-serial = "0.2.1"
|
|
|
|
[features]
|
|
esp32 = ["esp-hal/esp32", "esp-backtrace/esp32", "esp-println/esp32", "esp-hal-smartled/esp32"]
|
|
esp32c2 = ["esp-hal/esp32c2", "esp-backtrace/esp32c2", "esp-println/esp32c2"]
|
|
esp32c3 = ["esp-hal/esp32c3", "esp-backtrace/esp32c3", "esp-println/esp32c3", "esp-hal-smartled/esp32c3"]
|
|
esp32c6 = ["esp-hal/esp32c6", "esp-backtrace/esp32c6", "esp-println/esp32c6", "esp-hal-smartled/esp32c6"]
|
|
esp32h2 = ["esp-hal/esp32h2", "esp-backtrace/esp32h2", "esp-println/esp32h2", "esp-hal-smartled/esp32h2"]
|
|
esp32p4 = ["esp-hal/esp32p4", "esp-backtrace/esp32p4", "esp-println/esp32p4"]
|
|
esp32s2 = ["esp-hal/esp32s2", "esp-backtrace/esp32s2", "esp-println/esp32s2", "esp-hal-smartled/esp32s2"]
|
|
esp32s3 = ["esp-hal/esp32s3", "esp-backtrace/esp32s3", "esp-println/esp32s3", "esp-hal-smartled/esp32s3"]
|
|
|
|
async = ["esp-hal/async"]
|
|
|
|
eh1 = ["esp-hal/eh1"]
|
|
|
|
embassy = ["esp-hal/embassy"]
|
|
|
|
embassy-executor-thread = ["esp-hal/embassy-executor-thread"]
|
|
embassy-executor-interrupt = ["esp-hal/embassy-executor-interrupt"]
|
|
|
|
embassy-time-timg0 = ["esp-hal/embassy-time-timg0"]
|
|
embassy-generic-timers = ["embassy-time/generic-queue-8"]
|
|
|
|
direct-vectoring = ["esp-hal/direct-vectoring"]
|
|
interrupt-preemption = ["esp-hal/interrupt-preemption"]
|
|
|
|
opsram-2m = ["esp-hal/opsram-2m"]
|
|
psram-2m = ["esp-hal/psram-2m"]
|
|
|
|
[profile.release]
|
|
debug = true
|