forked from eldruin/mlx9061x-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 866 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
[package]
name = "mlx9061x"
version = "0.2.0" # remember to update html_root_url
authors = ["Diego Barrios Romero <[email protected]>"]
repository = "https://github.com/eldruin/mlx9061x-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the MLX90614 and MLX90615 non-contact infrared thermometers."
readme = "README.md"
keywords = ["infrared", "thermometer", "temperature", "sensor", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/mlx9061x-rs"
documentation = "https://docs.rs/mlx9061x"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2018"
[dependencies]
embedded-hal = "0.2.5"
smbus-pec = "1"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.7"