forked from idheepan/max31856-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 897 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 = "max31856"
version = "0.1.0"
authors = ["dheepan <[email protected]>"]
repository = "https://github.com/idheepan/max31856-rs"
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A platform independent rust driver for Max31856 Precision Thermocouple to Digital Converter"
readme = "README.md"
keywords = ["temperature", "thermocouple", "sensor", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/idheepan/max31856-rs"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
[badges]
coveralls = { repository = "idheepan/max31856-rs", branch = "master", service = "github" }
[dependencies]
embedded-hal = "1.0.0"
nb = "1.0"
[dev-dependencies]
embedded-hal-bus = "0.2.0"
embedded-hal-mock = { version = "0.11.*", features = ["eh1"] }