-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
31 lines (26 loc) · 897 Bytes
/
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
[package]
name = "adskalman"
repository = "https://github.com/strawlab/adskalman-rs"
version = "0.16.0"
authors = ["Andrew Straw <[email protected]>"]
edition = "2018"
description = "Kalman filter and Rauch-Tung-Striebel smoothing implementation using nalgebra, no_std"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["kalman", "bayesian"]
categories = ["algorithms", "no-std", "science", "science::robotics"]
[dependencies]
nalgebra = { workspace = true, features = ["libm"] }
num-traits = { version = "0.2", default-features = false }
log = { version = "0.4", optional = true }
approx = { version = "0.5", default-features = false }
[workspace.dependencies]
nalgebra = { version = "0.33", default-features = false }
[dev-dependencies]
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
[features]
default = ["std"]
std = ["log"]
[workspace]
members = ["examples"]