tiny-solver 0.5.0

Factor graph solver
Documentation
[package]
name = "tiny-solver"
version = "0.5.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/*"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
faer = "0.18.2"
faer-ext = { version = "0.1.0", features = ["nalgebra"] }
log = "0.4.21"
nalgebra = "0.32.4"
num-dual = "0.9.0"
num-traits = "0.2.18"
numpy = { version = "0.21.0", features = ["nalgebra"], optional = true }
pyo3 = { version = "0.21.0", features = ["abi3", "abi3-py38"] }
# 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"]

[dev-dependencies]
env_logger = "0.11.3"
itertools = "0.12.1"
plotters = "0.3.5"

[profile.dev.package.faer]
opt-level = 3

[lib]
name = "tiny_solver"
# crate-type = ["staticlib"]