-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
35 lines (31 loc) · 966 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
34
35
[package]
name = "bmi160"
version = "1.1.0"
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/bmi160-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the BMI160 inertial measurement unit (IMU)."
readme = "README.md"
keywords = ["inertial", "accelerometer", "gyroscope", "imu", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/bmi160-rs"
documentation = "https://docs.rs/bmi160"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2021"
[dependencies]
embedded-hal = "1.0.0"
defmt = { version = "0.3.6", optional = true }
[dev-dependencies]
linux-embedded-hal = "0.4.0"
embedded-hal-mock = { version = "0.10.0", default-features = false, features = ["eh1"] }
[profile.release]
lto = true
[features]
defmt-03 = ["dep:defmt"]