-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (30 loc) · 922 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
33
34
35
36
[package]
name = "aht20-driver"
authors = ["Rikard Anglerud <rikard@anglerud.com>"]
version = "2.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["no-std", "embedded-hal-driver", "sensor", "temperature", "humidity"]
description = "Rust embedded-hal driver for the AHT20 temperature and humidity sensor."
homepage = "https://github.com/anglerud/aht20-driver"
repository = "https://github.com/anglerud/aht20-driver"
documentation = "https://docs.rs/aht20-driver"
readme = "README.md"
rust-version = "1.81"
[dependencies]
embedded-hal = "1.0.0"
[dependencies.defmt]
version = "0.3.6"
optional = true
[dependencies.crc-any]
version = "2.5.0"
default-features = false
[dev-dependencies]
embedded-hal-mock = "0.11.1"
[dev-dependencies.defmt]
version = "0.3.6"
features = ["unstable-test"]
[features]
default = ["use-defmt"]
use-defmt = ["dep:defmt"]