rs-dht-pio/Cargo.toml
2024-03-14 07:01:27 +01:00

26 lines
727 B
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"