-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (29 loc) · 885 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
[package]
name = "embedded-ccs811"
version = "0.2.0"
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/embedded-ccs811-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the CCS811 ultra-low power digital gas sensor for monitoring indoor air quality."
readme = "README.md"
keywords = ["gas", "air", "quality", "sensor", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/embedded-ccs811-rs"
documentation = "https://docs.rs/embedded-ccs811"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2018"
[dependencies]
embedded-hal = "0.2.6"
nb = "1"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.8"
[profile.release]
lto = true