bme680-rust/Cargo.toml

22 lines
659 B
TOML
Raw Normal View History

2018-04-11 19:40:48 +00:00
[package]
2024-02-25 18:55:43 +00:00
authors = ["marcelbuesing <buesing.marcel@googlemail.com>", "denisnutiu <denis.nutiu@googlemail.com>"]
2018-05-25 21:09:16 +00:00
description = "A pure Rust implementation for the BME680 environmental sensor."
2024-02-25 18:55:43 +00:00
documentation = "https://github.com/dnutiu/bme680-rust"
2018-05-25 21:09:16 +00:00
license = "MIT"
2019-11-27 10:00:31 +00:00
name = "bme680"
2024-02-25 18:55:43 +00:00
repository = "https://github.com/dnutiu/bme680-rust"
version = "0.7.0"
2024-02-25 18:57:40 +00:00
edition = "2021"
2019-11-27 10:22:58 +00:00
[badges]
2019-11-27 10:10:09 +00:00
maintenance = { status = "passively-maintained" }
2018-04-11 19:40:48 +00:00
[dependencies]
2019-11-27 10:00:31 +00:00
bitflags = "1.2"
embedded-hal = "=1.0.0"
2018-05-18 20:12:42 +00:00
log = "0.4"
2024-02-25 18:48:36 +00:00
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
linux-embedded-hal = "0.4.0"
2018-05-18 12:57:34 +00:00
[dev-dependencies]
2024-02-25 18:48:36 +00:00
env_logger = "0.9"