-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
30 lines (26 loc) · 928 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
[package]
authors = ["marcelbuesing <[email protected]>"]
description = "A pure Rust implementation for the BME680 environmental sensor."
documentation = "https://docs.rs/bme680"
license = "MIT"
name = "bme680"
repository = "https://github.com/marcelbuesing/bme680-hal"
version = "0.7.0"
edition = "2018"
[badges]
travis-ci = { repository = "https://github.com/marcelbuesing/bme680-hal", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
bitflags = "2.6"
embedded-hal = "=1.0"
log = "0.4"
serde = { version = "1.0", optional = true, default-features = false }
[dev-dependencies]
env_logger = "0.11"
futures = { version = "0.3" }
i2cdev = "0.6"
influx_db_client = { version = "0.5", default-features= false, features = ["rustls-tls"] }
tokio = {version = "1.5", features = ["full"] }
url = "2.1"
[target.'cfg(target_os = "linux")'.dev-dependencies]
linux-embedded-hal = "0.4.0"