summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c4d9d2d9aecd77ecdb68fbc1487770aa967385a7 (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     = "1.0.0"
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.0.0-rc.1"

[dev-dependencies]
anyhow = "1"
ctrlc = { version = "3", features = ["termination"] }
rppal = { git = "https://github.com/golemparts/rppal.git", rev = "86dab12376ea2fb61f28f4a2801b8d1d89db25a0", features = ["hal"] }

[features]
default = []
no_std = []

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