forked from drogue-iot/drogue-mpu-6050
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
31 lines (28 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
[package]
name = "mpu6050-dmp"
version = "0.6.0"
authors = [
"Bob McWhirter <[email protected]>",
"Rafael Bachmann <[email protected]",
]
edition = "2021"
license = "Apache-2.0"
description = "Platform-independent I2C driver for MPU6050. Supports DMP usage. Fork of drogue-mpu-6050 which uses only embedded-hal traits (no dependency on embedded-time or drogue-embedded-timer)."
keywords = ["driver", "i2c", "motion", "dmp", "no_std"]
categories = ["no-std", "embedded"]
repository = "https://github.com/barafael/mpu6050-dmp-rs"
readme = "README.md"
[features]
default = []
defmt-03 = ["dep:defmt"]
serde = ["dep:serde"]
async = ["dep:embedded-hal-async"]
postcard = ["dep:postcard"]
postcard-experimental = ["postcard", "postcard/experimental-derive"]
[dependencies]
embedded-hal = { version = "1" }
embedded-hal-async = { version = "1", optional = true }
libm = "0.2"
serde = { version = "1", features = ["derive"], default-features = false, optional = true }
defmt = { version = "0.3", optional = true }
postcard = { version = "1", optional = true }