forked from drogue-iot/drogue-mpu-6050
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
26 lines (23 loc) · 819 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
[package]
name = "mpu6050-dmp"
version = "0.6.0"
authors = [
"Bob McWhirter <bmcwhirt@redhat.com>",
"Rafael Bachmann <rafael.bachmann.93@gmail.com",
]
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"]
async = ["dep:embedded-hal-async"]
[dependencies]
embedded-hal = { version = "1" }
embedded-hal-async = { version = "1", optional = true }
libm = "0.2"
defmt = { version = "0.3", optional = true }