-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
52 lines (46 loc) · 1.33 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
45
46
47
48
49
50
51
52
[package]
name = "levenberg-marquardt"
version = "0.14.0"
authors = [
"Jannik Schürg <[email protected]>",
"Geordon Worley <[email protected]>",
]
edition = "2021"
description = "Levenberg-Marquardt algorithm built on top of nalgebra"
keywords = ["optimization", "optimizer", "levenberg", "marquardt", "squares"]
categories = [
"algorithms",
"computer-vision",
"science::robotics",
"no-std",
"mathematics",
]
repository = "https://github.com/rust-cv/levenberg-marquardt"
documentation = "https://docs.rs/levenberg-marquardt/"
license = "MIT"
readme = "README.md"
[features]
default = []
minpack-compat = []
[dependencies]
nalgebra = { version = "0.33", default-features = false }
num-traits = { version = "0.2", default-features = false, features = [
"libm",
] }
cfg-if = "1.0.0"
[dev-dependencies]
arrsac = "0.10.0"
rand = { version = "0.8.4", default-features = false }
nalgebra = "0.33"
pcg_rand = "0.13.0"
sample-consensus = "1.0.2"
approx = "0.5.1"
[build-dependencies]
rustc_version = "0.4.0"
[profile.test]
# The line fitting test case needs this to run in reasonable amount of time
opt-level = 2
[package.metadata.docs.rs]
# To build locally use
# RUSTDOCFLAGS="--html-in-header katex-header.html" cargo doc --no-deps --document-private-items --open
rustdoc-args = ["--html-in-header", "katex-header.html"]