-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (23 loc) · 860 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "esp-hal-rmt-onewire"
version = "0.2.1"
edition = "2021"
description = "RMT adapter for onewire with esp-hal and embassy"
license = "MIT OR Apache-2.0"
[features]
search-masks = []
[dependencies]
embassy-futures = { version = "0.1.1" }
esp-hal = { version = "0.20.1", features=["async"] }
[dev-dependencies]
embassy-executor = { version="0.6.0" }
esp-hal = { version = "0.20.1", features=["esp32c3"] }
esp-backtrace = { version="0.14.1", features=["esp32c3", "println", "exception-handler", "panic-handler"] }
esp-println = { version="0.11.0", features=["esp32c3"] }
embassy-time = "0.3.2"
esp-hal-embassy = { version = "0.3.0", features=["esp32c3", "integrated-timers"] }
fixed = "1.28.0"
[package.metadata.docs.rs]
features = [ "esp-hal/esp32c3" ]
default-target = "riscv32imc-unknown-none-elf"
targets = ["riscv32imc-unknown-none-elf"]