-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.42 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "marg-orientation"
description = "A MARG (Magnetic, Angular Rate, and Gravity) orientation estimator"
version = "0.1.0-alpha.2"
authors = ["Markus Mayer"]
homepage = "https://github.com/sunsided/marg-orientation"
repository = "https://github.com/sunsided/marg-orientation"
license = "EUPL-1.2"
keywords = ["kalman-filter", "embedded", "robotics", "imu", "estimation"]
categories = ["aerospace", "algorithms", "science::robotics", "no-std", "embedded"]
edition = "2021"
[features]
default = ["coordinate-frame"]
std = ["minikalman/std", "num-traits/std"]
unsafe = []
coordinate-frame = ["dep:coordinate-frame"]
micromath = ["dep:micromath", "coordinate-frame/micromath"]
[dependencies]
coordinate-frame = { version = "0.4.0", optional = true, features = ["num-traits"] }
micromath = { version = "2.1.0", features = ["vector", "quaternion", "num-traits"], optional = true }
minikalman = { version = "0.6.0", default-features = false }
num-traits = { version = "0.2.19", default-features = false }
uniform-array-derive = "0.1.0"
[dev-dependencies]
ensure-uniform-type = "0.1.1"
paste = "1.0.15"
minikalman = { version = "0.6.0", features = ["std"] }
csv = "1.3.0"
serde = { version = "1.0.204", features = ["derive"] }
kiss3d = "0.35.0"
[[example]]
name = "simulation"
path = "examples/simulation.rs"
required-features = ["std", "coordinate-frame"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]