rs-dht-pio/Cargo.toml

36 lines
1 KiB
TOML
Raw Normal View History

2023-09-08 21:09:15 +00:00
[package]
2023-09-09 12:09:42 +00:00
name = "dht-pio"
2023-10-10 06:33:04 +00:00
version = "0.5.2"
2023-09-08 21:09:15 +00:00
edition = "2021"
2023-09-09 12:22:55 +00:00
license = "MIT"
2023-09-09 12:09:42 +00:00
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"]
2023-09-08 21:09:15 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = { version = "0.2.5" }
cortex-m = { version = "0.7.6"}
cortex-m-rt = "0.7.3"
rp2040-boot2 = "0.2.1"
rp2040-hal = { version = "0.9.0", features = ["rp2040-e5"] }
pio-proc = "0.2.2"
pio = "0.2.1"
2023-09-21 16:45:47 +00:00
[dev-dependencies]
rp-pico = { version = "0.8.0", features = ["rp2040-e5"] }
embedded-hal = { version = "0.2.5", features = ["unproven"] }
embedded-alloc = "0.5.0"
cortex-m = { version = "0.7.6"}
cortex-m-rt = "0.7.3"
usb-device = "0.2.9"
usbd-serial = "0.1.1"
[[example]]
name = "rp-pico-dht22"
path = "example/rp_pico_dht22.rs"