forked from rust-embedded-community/accelerometer.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 808 Bytes
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
[package]
name = "accelerometer"
version = "0.12.0" # Also update html_root_url in lib.rs when bumping this
description = """
Generic, embedded-friendly accelerometer support, including
traits and types for taking readings from 2 or 3-axis
accelerometers and tracking device orientations.
"""
authors = ["Tony Arcieri <bascule@gmail.com>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/NeoBirth/accelerometer.rs"
readme = "README.md"
edition = "2018"
rust-version = "1.47"
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["acceleration", "position", "tracking"]
[badges]
maintenance = { status = "passively-maintained" }
[dependencies.micromath]
version = "2"
features = ["vector"]
[features]
default = ["orientation"]
orientation = []