Cargo.toml 880 B

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "adxl345_driver2"
  4. version = "2.0.1"
  5. authors = [ "Michael Büsch <m@bues.ch>", "Michael Cummings <dragonrun1@gmail.com>" ]
  6. description = "Driver for Analog Device ADXL345/ADXL346 3-Axis Digital Accelerometer"
  7. edition = "2021"
  8. keywords = [ "adxl345", "adxl346", "embedded", "driver" ]
  9. categories = [ "embedded", "hardware-support", "os" ]
  10. license = "MIT"
  11. homepage = "https://bues.ch"
  12. readme = "README.md"
  13. repository = "https://git.bues.ch/git/adxl345_driver2.git"
  14. [dependencies]
  15. bitflags = "2"
  16. c2rust-bitfields = { version = "0.18", features = ["no_std"], default-features = false }
  17. embedded-hal = "1"
  18. [dev-dependencies]
  19. anyhow = "1"
  20. ctrlc = { version = "3", features = ["termination"] }
  21. rppal = { version = "0.17", features = ["hal"] }
  22. [features]
  23. default = []
  24. no_std = []
  25. # vim: ts=4 sw=4 expandtab