-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (40 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
43
44
[package]
name = "eskf"
version = "0.3.0"
authors = ["Jørgen Nordmoen <[email protected]>"]
description = "Navigation filter based on an Error State Kalman Filter (ESKF)"
keywords = ["navigation", "filter", "orientation", "kalman"]
license = "MIT OR Apache-2.0"
categories = ["embedded", "no-std", "mathematics", "science::robotics"]
edition = "2018"
readme = "README.md"
homepage = "https://github.com/nordmoen/eskf-rs"
repository = "https://github.com/nordmoen/eskf-rs"
documentation = "https://docs.rs/eskf"
exclude = ["docs/*"]
[features]
default = ["std", "full-reset"]
# Perform a full filter reset during measurement update
full-reset = []
# A more stable covariance update, but more computationally expensive
cov-symmetric = []
# Stable, symmetric and positive covariance update, computationally expensive
cov-joseph = []
# Use Rust 'std', disable and enable 'no_std' to use in no_std enviroment
std = ["nalgebra/std"]
# Enable to use in no_std environment
no_std = ["nalgebra/libm", "dep:num-traits"]
[dependencies]
nalgebra = { version = "0.33.0", default-features = false }
num-traits = { version = "0.2.17", optional = true, default-features = false, features = [
"libm",
] }
[dev-dependencies]
approx = "0.5.0"
nalgebra = { version = "0.33.0", features = ["serde-serialize", "debug"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
plotly = "0.6.0"
[[example]]
name = "plot_carla"
required-features = ["std"]