[package]
name = "tiny-solver"
version = "0.16.0"
edition = "2021"
authors = ["Powei Lin <poweilin1994@gmail.com>, Hossam R. <hrabbouh@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/"]
[dependencies]
faer = "0.20.2"
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 }
rayon = "1.9.0"
simba = "0.9.0"
[[example]]
name = "m3500_benchmark"
path = "examples/m3500_benchmark.rs"
[[example]]
name = "sphere2500"
[[example]]
name = "parking-garage"
[features]
python = ["num-dual/python", "numpy", "pyo3"]
[dev-dependencies]
env_logger = "0.11.6"
itertools = "0.14.0"
nalgebra = { version = "0.33.2", features = ["rand"] }
plotters = "0.3.6"
rand = "0.8.5"
[profile.dev.package.faer]
opt-level = 3
[lib]
name = "tiny_solver"