[package]
edition = "2024"
rust-version = "1.85"
name = "cartan"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Riemannian geometry, manifold optimization, and geodesic computation in Rust"
homepage = "https://cartan.sotofranco.dev"
documentation = "https://docs.rs/cartan"
readme = "README.md"
keywords = [
"riemannian",
"manifold",
"optimization",
"geometry",
"geodesic",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/alejandro-soto-franco/cartan"
resolver = "2"
[lib]
name = "cartan"
path = "src/lib.rs"
[[test]]
name = "test_corr"
path = "tests/test_corr.rs"
[[test]]
name = "test_euclidean"
path = "tests/test_euclidean.rs"
[[test]]
name = "test_grassmann"
path = "tests/test_grassmann.rs"
[[test]]
name = "test_optim"
path = "tests/test_optim.rs"
[[test]]
name = "test_se"
path = "tests/test_se.rs"
[[test]]
name = "test_so"
path = "tests/test_so.rs"
[[test]]
name = "test_spd"
path = "tests/test_spd.rs"
[[test]]
name = "test_sphere"
path = "tests/test_sphere.rs"
[dependencies.cartan-core]
version = "0.1"
[dependencies.cartan-dec]
version = "0.1"
[dependencies.cartan-geo]
version = "0.1"
[dependencies.cartan-manifolds]
version = "0.1"
[dependencies.cartan-optim]
version = "0.1"
[dev-dependencies.nalgebra]
version = "0.33"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rand_distr]
version = "0.5"