-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.05 KB
/
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
36
37
38
39
40
41
42
43
[package]
name = "qmi8658"
categories = ["embedded", "no-std"]
version = "0.1.0"
edition = "2021"
authors = ["Walter Bonetti <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "QMI8658 Sensor/Gyroscope"
keywords = ["no-std", "qmi8658", "embedded", "embedded-hal-driver", "sensor"]
include = [
"src/**/*.rs",
"crates-io.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
repository = "https://github.com/IniterWorker/qmi8658"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
targets = ["thumbv7m-none-eabi", "thumbv7em-none-eabihf"]
[dependencies]
# Embedded HAL abstraction
# We use this layer to abstract hardware i2c/spi
embedded-hal = { version = "1.0.0" }
bitfield = "0.15.0"
log = { version = "0.4", default-features = false, optional = true }
libm = { version = "0.2" }
[features]
default = []
loglib = ["log"]
[dev-dependencies.cargo-husky]
version = "1"
features = ["user-hooks"]
[lib]
name = "qmi8658"
path = "src/lib.rs"