forked from trembel/locate-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 1.09 KB
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 = "locate-rs"
authors = ["Silvano Cortesi <silvano.cortesi@hotmail.com>"]
version = "1.0.2"
edition = "2024"
license = "LGPL-3.0"
description = "A `no_std` Rust library for 3D localization using TDOA and Trilateration. It provides fast iterative solvers (Levenberg-Marquardt) and a slower closed-form, eigenvector-based solution (trilateration only) for high-accuracy positioning."
repository = "https://github.com/trembel/locate-rs"
keywords = ["localization", "locate", "3d", "trilateration", "tdoa"]
categories = ["embedded", "no-std::no-alloc", "science", "algorithms"]
readme = "README.md"
[dependencies]
nalgebra = { version = "0.33.2", default-features = false, features=["libm"]}
heapless = "0.8.0"
num-traits = { version = "0.2.19", default-features = false }
simba = { version = "0.9.0", default-features = false }
rand = { version = "0.9.2", default-features = false }
[dev-dependencies]
approx = "0.5.1"
rand = "0.9.2"
criterion = { version = "0.6.0", features = ["html_reports"] }
[[bench]]
name = "twr_benchmark"
harness = false
[[bench]]
name = "tdoa_benchmark"
harness = false