forked from marcelbuesing/bme680
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 971 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
[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.6.0"
edition = "2018"
[badges]
travis-ci = { repository = "https://github.com/marcelbuesing/bme680-hal", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
bitflags = "2.4.2"
embedded-hal = "1.0.0"
embedded-hal-async = "1.0.0"
log = "0.4"
serde = { version = "1.0", optional = true, default-features = false }
[dev-dependencies]
env_logger = "0.9"
futures = { version = "0.3" }
i2cdev = "0.5"
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-alpha.1"