rs-dht-pio/Cargo.toml
2024-03-18 08:43:47 +01:00

37 lines
1.1 KiB
TOML

[package]
name = "dht-pio"
version = "0.5.4"
edition = "2021"
license = "MIT"
description = "A DHT Implementation using PIO (Programmable Input/Output), tested on Rasberry Pi Pico"
homepage = "https://github.com/jnthbdn/rs-dht-pio"
repository = "https://github.com/jnthbdn/rs-dht-pio"
readme = "readme.md"
keywords = ["dht", "pico", "pio"]
categories = ["embedded", "hardware-support", "no-std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embassy-rp = { version = "0.1.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
embassy-time = { version = "0.3.0" }
cortex-m-rt = "0.7.3"
pio-proc = "0.2.2"
pio = "0.2.1"
fixed = "1.23.1"
fixed-macro = "1.2"
[dev-dependencies]
embassy-executor = { version = "0.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
embassy-futures = { version = "0.1.1" }
embassy-usb-logger = { version = "0.1.0" }
log = "0.4"
[[example]]
name = "rp-pico-dht22"
path = "example/rp_pico_dht22.rs"