2018-04-11 19:40:48 +00:00
|
|
|
[package]
|
|
|
|
authors = ["marcelbuesing <buesing.marcel@googlemail.com>"]
|
2018-05-25 21:09:16 +00:00
|
|
|
description = "A pure Rust implementation for the BME680 environmental sensor."
|
|
|
|
documentation = "https://docs.rs/bme680"
|
|
|
|
license = "MIT"
|
2019-11-27 10:00:31 +00:00
|
|
|
name = "bme680"
|
|
|
|
repository = "https://github.com/marcelbuesing/bme680-hal"
|
2021-05-06 20:45:12 +00:00
|
|
|
version = "0.6.0"
|
2019-11-27 10:00:31 +00:00
|
|
|
edition = "2018"
|
2019-11-27 10:22:58 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "https://github.com/marcelbuesing/bme680-hal", branch = "master" }
|
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"
|
2018-05-18 12:57:34 +00:00
|
|
|
embedded-hal = "0.2"
|
2018-05-18 20:12:42 +00:00
|
|
|
log = "0.4"
|
2018-05-18 12:57:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-06 19:50:05 +00:00
|
|
|
env_logger = "0.8"
|
2020-07-27 11:12:16 +00:00
|
|
|
futures = { version = "0.3" }
|
2018-09-25 18:44:35 +00:00
|
|
|
i2cdev = "0.4"
|
2021-05-06 19:50:05 +00:00
|
|
|
influx_db_client = { version = "0.5", default-features= false, features = ["rustls-tls"] }
|
|
|
|
tokio = {version = "1.5", features = ["full"] }
|
2020-07-27 11:12:16 +00:00
|
|
|
url = "2.1"
|
2021-04-29 04:43:11 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dev-dependencies]
|
|
|
|
linux-embedded-hal = "0.3"
|