Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement support for embedded-hal 1.0 #36

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
name = "shtcx"
version = "0.11.0"
edition = "2021"
authors = ["Danilo Bargen <mail@dbrgn.ch>", "Raphael Nestler <raphael.nestler@gmail.com>"]
authors = [
"Danilo Bargen <mail@dbrgn.ch>",
"Raphael Nestler <raphael.nestler@gmail.com>",
]
documentation = "https://docs.rs/shtcx"
repository = "https://github.com/dbrgn/shtcx-rs"
license = "MIT OR Apache-2.0"
description = "Platform agnostic Rust driver for the Sensirion SHTCx series temperature/humidity sensors."
readme = "README.md"
keywords = ["shtcx", "sensirion", "temperature", "humidity", "embedded-hal-driver"]
keywords = [
"shtcx",
"sensirion",
"temperature",
"humidity",
"embedded-hal-driver",
]
categories = ["embedded", "hardware-support", "no-std"]
include = [
"**/*.rs",
Expand All @@ -23,11 +32,11 @@ include = [
default = []

[dependencies]
embedded-hal = "0.2"
embedded-hal = "1.0"

[dev-dependencies]
embedded-hal-mock = { version = "0.10.0", features = ["eh0"] }
linux-embedded-hal = "0.3"
embedded-hal-mock = { version = "0.10.0", features = ["eh1"], default-features = false }
linux-embedded-hal = "0.4"
termion = "1.5"
tui = "0.8"

Expand Down
Loading
Loading