[package]
name = "icm20948"
version = "0.0.1"
authors = ["William Salmon <pointswaves@gmail.com>"]
edition = "2018"
license = "MIT"
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["embedded-hal-driver", "spi", "i2c", "icm20948"]
description = "A bus-agnostic driver for the icm20948 accelerometer, gyro and compass."
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
embedded-hal = "0.2.3"
#bit-byte-structs = {git = 'https://gitlab.com/pointswaves/bit-byte-structures', tag="v0.0.3", features = ["cortex-m-debuging", ] }
#bit-byte-structs = {path = 'bitbytestructs', features = ["cortex-m-debuging", ] }
bit-byte-structs = {version="0.0.3", features = ["cortex-m-debuging", ] }
cortex-m-semihosting = {version="0.3.3", optional = true}
cortex-m = {version="0.7.0", optional = true}

[features]
cortex-m-debuging = ["cortex-m-semihosting", "cortex-m"]

[dev-dependencies]
linux-embedded-hal = "0.3.0"