[package]
edition = "2021"
rust-version = "1.77"
name = "manifold-rust"
version = "0.9.2"
authors = ["Lars Brubaker <larsbrubaker@matterhackers.com>"]
build = false
exclude = [
"demo/",
"docs/",
"tests/",
".github/",
".claude/",
"cpp-reference/",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust port of the Manifold 3D geometry library"
homepage = "https://larsbrubaker.github.io/manifold-rust/"
documentation = "https://docs.rs/manifold-rust/"
readme = "README.md"
keywords = [
"3d",
"geometry",
"mesh",
"boolean",
"csg",
]
categories = [
"algorithms",
"graphics",
"mathematics",
"wasm",
]
license = "Apache-2.0"
repository = "https://github.com/larsbrubaker/manifold-rust"
[features]
parallel = ["dep:rayon"]
[lib]
name = "manifold_rust"
path = "src/lib.rs"
[[bench]]
name = "manifold_bench"
path = "benches/manifold_bench.rs"
harness = false
[dependencies.clipper2-rust]
version = "1.0.3"
[dependencies.num-traits]
version = "0.2"
[dependencies.rayon]
version = "1.10"
optional = true
[dev-dependencies.criterion]
version = "0.5"