[package]
edition = "2021"
name = "skel"
version = "0.1.4"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Topology/shape primitives"
homepage = "https://github.com/arclabs561/skel"
documentation = "https://github.com/arclabs561/skel#readme"
readme = "README.md"
keywords = [
"topology",
"simplex",
"tda",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/skel"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "skel"
path = "src/lib.rs"
[[example]]
name = "manifold_circle"
path = "examples/manifold_circle.rs"
[[example]]
name = "riemannian_optimization"
path = "examples/riemannian_optimization.rs"
[[example]]
name = "simplex_boundary"
path = "examples/simplex_boundary.rs"
[[example]]
name = "simplicial_complex"
path = "examples/simplicial_complex.rs"
[[example]]
name = "vietoris_rips"
path = "examples/vietoris_rips.rs"
[dependencies.ndarray]
version = "0.16"
[dev-dependencies.proptest]
version = "1.5"