-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
30 lines (27 loc) · 1.02 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
[package]
categories = ["science", "science::robotics"]
description = "Yet Another Kalman Filter Implementation, as well as, Lie Theory (Lie group, algebra, vector) on SO(2), SO(3), SE(2) and SE(3). [no_std] is supported by default."
edition = "2021"
exclude = [
"target/*",
".gitignore",
".cargo/*",
"Cargo.lock",
]
keywords = ["no-std", "estimation", "filtering", "ukf"]
license = "MIT OR Apache-2.0"
name = "yakf"
repository = "https://github.com/wangxiaochuTHU/yakf"
version = "0.1.12"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hifitime = { version="3.2.0",default-features = false}
itertools = { version = "0.10.3",default-features = false}
log = "0.4"
# nalgebra = {git = "https://github.com/dimforge/nalgebra", features = ["default"]}
nalgebra = {version = "0.31",default-features = false,features = ["libm-force","alloc"]}
libm = "0.2.2"
num-traits = {version = "0.2.15", default-features = false}
[dev-dependencies]
libc-print = "0.1.19"
rand = "0.8.5"