-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 912 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
[package]
name = "l3gd20-registers"
version = "0.2.0"
authors = ["Markus Mayer <widemeadows@gmail.com>"]
categories = ["embedded", "hardware-support", "no-std", "science::robotics"]
description = "A typed map of the STMicroelectronics L3GD20 Gyroscope registers"
keywords = ["embedded-hal", "l3gd20", "mems", "i2c", "registers"]
license = "EUPL-1.2 OR MIT OR Apache-2.0"
homepage = "https://github.com/sunsided/l3gd20-registers"
repository = "https://github.com/sunsided/l3gd20-registers"
readme = "README.md"
edition = "2021"
rust-version = "1.64"
[features]
defmt = ["dep:defmt"]
[dependencies]
bitfield-struct = "0.10.0"
defmt = { version = "0.3.8", optional = true }
hardware-registers = "0.2.0"
[patch.crates-io]
# hardware-registers = { git = "http://github.com/sunsided/hardware-registers", features = ["i2c", "spi"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]