-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (39 loc) · 1.28 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
[package]
name = "tiny-solver"
version = "0.13.0"
edition = "2021"
authors = ["Powei Lin <poweilin1994@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "Factor graph solver"
homepage = "https://github.com/powei-lin/tiny-solver-rs"
repository = "https://github.com/powei-lin/tiny-solver-rs"
keywords = ["factor-graph", "ceres-solver", "minisam"]
categories = ["data-structures", "science", "mathematics"]
exclude = ["/.github/*", "*.ipynb", "./scripts/*", "examples/*", "tests/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
faer = "0.20.1"
faer-ext = { version = "0.4.1", features = ["nalgebra"] }
log = "0.4.21"
nalgebra = "0.33.2"
num-dual = "0.11.0"
num-traits = "0.2.19"
numpy = { version = "0.23.0", features = ["nalgebra"], optional = true }
pyo3 = { version = "0.23.3", features = ["abi3", "abi3-py38"], optional = true }
# pyo3-log = { version = "0.9.0", optional = true }
rayon = "1.9.0"
[[example]]
name = "m3500_benchmark"
path = "examples/m3500_benchmark.rs"
[features]
python = ["num-dual/python", "numpy", "pyo3"]
[dev-dependencies]
env_logger = "0.11.6"
itertools = "0.13.0"
plotters = "0.3.6"
[profile.dev.package.faer]
opt-level = 3
[lib]
name = "tiny_solver"
# crate-type = ["staticlib"]