rs-dht-pio/Cargo.toml

39 lines
1.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-11-05 14:08:40 +00:00
version = "0.5.4"
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]
2024-03-13 15:46:52 +00:00
embassy-rp = { version = "0.1.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
embassy-time = { version = "0.3.0" }
2023-09-08 21:09:15 +00:00
cortex-m-rt = "0.7.3"
2024-03-13 15:46:52 +00:00
2023-09-08 21:09:15 +00:00
pio-proc = "0.2.2"
pio = "0.2.1"
2023-09-21 16:45:47 +00:00
2024-03-13 15:46:52 +00:00
fixed = "1.23.1"
2024-03-18 07:43:47 +00:00
fixed-macro = "1.2"
2023-09-21 16:45:47 +00:00
2024-07-10 20:01:44 +00:00
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
2024-03-14 07:40:53 +00:00
[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" }
2024-03-15 06:31:23 +00:00
embassy-usb-logger = { version = "0.1.0" }
log = "0.4"
2024-03-14 07:40:53 +00:00
[[example]]
name = "rp-pico-dht22"
path = "example/rp_pico_dht22.rs"