-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (26 loc) · 904 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "pmsa003i"
description = "Plantower PMSA003I Driver for Embedded HAL"
version = "0.1.9"
edition = "2021"
authors = ["Brian Bustin"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/bbustin/pmsa003i"
categories = ["embedded", "hardware-support", "no-std", "asynchronous"]
keywords = ["driver", "embedded-hal-driver", "pmsa003i", "aqi", "pm2_5"]
[dependencies]
embedded-hal = "1.0.0"
embedded-hal-async = { version = "1.0.0", optional = true }
defmt = { version = "0.3.8", optional = true }
document-features = "0.2.10"
aqi = { version = "0.2.0", optional = true }
[features]
## enables async operation
async = ["dep:embedded-hal-async"]
## derives defmt::Format for types and errors to help with logging
defmt = ["dep:defmt"]
## enables calculation of AQI values using the aqi crate
aqi = ["dep:aqi"]
[package.metadata.docs.rs]
features = ["aqi"]