aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3614130a2b4b22c34dacb51473dd7c78f6c36941 (plain)
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
# -*- coding: utf-8 -*-

[package]
name        = "adxl345_driver2"
version     = "2.0.1"
authors     = [ "Michael Büsch <m@bues.ch>", "Michael Cummings <dragonrun1@gmail.com>" ]
description = "Driver for Analog Device ADXL345/ADXL346 3-Axis Digital Accelerometer"
edition     = "2021"
keywords    = [ "adxl345", "adxl346", "embedded", "driver" ]
categories  = [ "embedded", "hardware-support", "os" ]
license     = "MIT"
homepage    = "https://bues.ch"
readme      = "README.md"
repository  = "https://git.bues.ch/git/adxl345_driver2.git"

[dependencies]
bitflags = "2"
c2rust-bitfields = { version = "0.18", features = ["no_std"], default-features = false }
embedded-hal = "1"

[dev-dependencies]
anyhow = "1"
ctrlc = { version = "3", features = ["termination"] }
rppal = { version = "0.17", features = ["hal"] }

[features]
default = []
no_std = []

# vim: ts=4 sw=4 expandtab
bues.ch cgit interface