-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (36 loc) · 1.05 KB
/
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
37
38
39
40
41
42
43
[package]
name = "ltr303"
version = "0.1.4"
authors = ["Ardelean Călin-Petru <[email protected]>"]
repository = "https://github.com/Ardelean-Calin/ltr303-rs"
license = "Apache-2.0"
description = "Platform agnostic Rust driver for the LTR-303 Ambient Light Sensor."
readme = "README.md"
keywords = ["ambient", "light", "sensor", "embedded-hal-driver", "als"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/Ardelean-Calin/ltr303-rs"
documentation = "https://docs.rs/ltr303"
exclude = [".devcontainer", ".vscode"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = "1.0"
paste = "1.0.7"
num-derive = "0.3"
[dependencies.num]
version = "0.4"
default-features = false
[dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies]
embedded-hal-mock = "0.10.0"
linux-embedded-hal = "0.4.0"
# [build-dependencies]