-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
29 lines (25 loc) · 889 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 = "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.7.0"
include = ["src/lib.rs", "LICENSE", "README.md", "CHANGELOG.md"]
[future-incompat-report]
frequency = "always"
[dependencies]
embedded-hal = "1.0"
bitmatch = "0.1.1"
# dimensioned = "0.8.0" # Compile-time dimensional analysis for various unit systems using Rust's type system
[features]
invert-sdo = []
[dev-dependencies]
test-case = "3.3"
# for the Raspberry Pi example
rppal = { version = "0.17.1", features = ["hal"] }