forked from crjeder/hx711_spi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 913 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 = "hx711_spi"
description = "A platform agnostic driver to interface with the HX711 using SPI"
categories = ["embedded", "hardware-support"]
keywords = ["embedded-hal-driver", "embedded-hal", "hx711", "amplifier", "driver"]
authors = ["crjeder <[email protected]>"]
repository = "https://github.com/crjeder/hx711_spi"
readme = "README.md"
documentation = "https://docs.rs/hx711_spi"
license = "MIT OR Apache-2.0"
edition = "2021"
version = "0.4.1"
[dependencies]
embedded-hal = "0.2.4"
bitmatch = "0.1.1"
nb = "1.0.0"
[dev-dependencies]
test-case = "3"
embedded-hal-mock = "0.9.0"
# for the Raspberry Pi example
rppal = { version = "0.14.1", features = ["hal"] }
#[dependencies.stm32f1xx-hal]
#version = "0.9"
#features = ["rt", "stm32f103", "medium"]
#cortex-m = "0.7.4"
#cortex-m-rt = "0.7.1"
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
#panic-halt = "0.2.0"