[package] name = "kalman-rust" repository = "https://github.com/LdDl/kalman-rs" readme = "README.md" keywords = ["computer-vision", "kalman", "tracking", "filtering"] license = "MIT" version = "0.2.3" edition = "2021" authors = ["Dimitrii Lopanov "] exclude = ["/.github", "/ci", "/tools", "release.toml", "rustfmt.toml"] description = "Dead simple implementation of Discrete Kalman filter for object tracking purposes" homepage = "https://github.com/LdDl/kalman-rs" documentation = "https://docs.rs/kalman-rs" categories = ["algorithms", "computer-vision", "mathematics", "science"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] nalgebra = "0.32.3" uuid = { version = "1.5.0", features = ["serde", "v4"] } chrono = { version = "0.4.31", features = ["serde"] } rand = { version = "0.8.5" }