-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (29 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
30
31
32
33
34
35
[package]
name = "tmp117"
version = "2.0.0"
edition = "2021"
authors = ["xgroleau <[email protected]>", "phansel <[email protected]>"]
repository = "https://github.com/xgroleau/tmp117-rs"
license = "MIT OR Apache-2.0"
homepage= "https://github.com/xgroleau/tmp117-rs"
description = "Driver for the tmp117 using the embedded-hal"
documentation = "https://docs.rs/tmp117"
readme = "README.md"
keywords = ["driver", "embedded-hal-driver", "no-std", "tmp117", "sensor"]
categories = ["embedded", "hardware-support", "no-std"]
rust-version = "1.75"
exclude = [
".envrc",
"flake.nix",
"flake.lock",
]
autoexamples = false
[lib]
doctest = false
[dependencies]
defmt = { version = "0.3", optional = true}
embedded-hal = { version = "1.0" }
embedded-hal-async = { version = "1.0" }
bilge = "0.2"
device-register = "0.4"
device-register-async = "0.4"