-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 709 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 709 Bytes
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
[package]
authors = ["Andrei Sousa <sousandrei@gmail.com>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "Simple driver for ST ism330dhcx sensor"
documentation = "https://docs.rs/ism330dhcx"
edition = "2024"
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
keywords = [
"i2c",
"embedded-hal-driver",
"ism330dhcx",
"gyroscope",
"accelerometer",
]
license = "MIT"
name = "ism330dhcx"
readme = "README.md"
repository = "https://github.com/sousandrei/ism330dhcx"
version = "0.6.0"
[dependencies]
defmt = "1.0.1"
embedded-hal = "1.0.0"
embedded-io = "0.7.1"
bitfield = "0.17.0"
[dev-dependencies]
approx = "0.5.1"
embedded-hal-mock = "0.11"