-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
33 lines (29 loc) · 990 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
[package]
name = "loadcell"
version = "0.3.0"
authors = ["DaneSlattery <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "http://github.com/DaneSlattery/hx711"
description = "A no-std embedded-hal package for the hx711 load cell, based on the embedded hal. Has optional support for interrupts on the esp32."
readme = "README.md"
keywords = ["scale", "hx711", "loadcell", "no-std", "driver"]
categories = ["no-std", "embedded", "hardware-support", "science::robotics"]
[dependencies]
critical-section = "1.1.2"
embedded-hal = { version = "1.0.0" }
esp-hal = { version = "0.20.1", optional = true }
[[example]]
name = "interrupt"
[[example]]
name = "polling"
[dev-dependencies]
esp-backtrace = { version = "0.14.1", features = [
"esp32",
"panic-handler",
"exception-handler",
"println",
] }
esp-println = { version = "0.11.0", features = ["esp32", "log"] }
log = { version = "0.4.18" }
esp-hal = { version = "0.20.1", features = ["esp32"] }