-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
31 lines (28 loc) · 837 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]
name = "apds9960"
version = "0.1.0"
authors = ["Diego Barrios Romero <[email protected]>"]
repository = "https://github.com/eldruin/apds9960-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the APDS9960 digital proximity, ambient light, RGB and gesture sensor."
readme = "README.md"
keywords = ["proximity", "light", "gesture", "sensor", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/apds9960-rs"
documentation = "https://docs.rs/apds9960"
include = [
"**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
[dependencies]
embedded-hal = "0.2.5"
nb = "1"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.7"
[profile.release]
lto = true