1
Fork 0
mpu6050/Cargo.toml
2019-05-23 08:40:59 +02:00

27 lines
661 B
TOML

[package]
name = "mpu6050"
version = "0.1.2"
authors = ["Julian Gaal <gjulian@uos.de>"]
edition = "2018"
description = "Platform agnostic driver for MPU6050 6-axis IMU"
repository = "https://github.com/juliangaal/mpu6050"
readme = "README.md"
keywords = ["mpu6050", "imu", "embedded"]
license = "MIT"
[dependencies]
embedded-hal = "0.2.2"
libm = "0.1.3"
[dependencies.nalgebra]
default-features = false
version = "0.18.0"
[dev-dependencies]
i2cdev = "0.4.1"
linux-embedded-hal = "0.2.2"
# nix version bump, to fix https://github.com/nix-rust/nix/issues/1057#event-2356640839
[patch.crates-io]
i2cdev = { git = "https://github.com/juliangaal/rust-i2cdev" }