-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
36 lines (32 loc) · 921 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
32
33
34
35
36
[package]
name = "sgp30"
version = "0.3.2"
authors = ["Danilo Bargen <mail@dbrgn.ch>"]
documentation = "https://docs.rs/sgp30"
repository = "https://github.com/dbrgn/sgp30-rs"
license = "MIT OR Apache-2.0"
description = "Platform agnostic Rust driver for the Sensirion SGP30 gas sensor."
readme = "README.md"
keywords = ["sgp30", "sensirion", "driver", "tvoc", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
edition = "2018"
[features]
default = []
[dependencies]
byteorder = { version = "1", default-features = false }
embedded-hal = "0.2"
num-traits = { version = "0.2", default-features = false }
sensirion-i2c = "0.2"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = { version = "0.10.0", features = ["eh0"] }
[profile.release]
lto = true