rs-dht-pio/Cargo.toml
hodasemi e3a0b6ec3d
All checks were successful
Check Build / Test build (push) Successful in 32m25s
Remove example
2024-08-06 17:15:52 +02:00

29 lines
829 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.2.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"
serde = { version = "1.0.203", default-features = false, features = ["derive"] }