[package]
edition = "2021"
name = "thanatos"
version = "0.1.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CSG geometries in rust"
homepage = "https://github.com/cmhamel/thanatos"
readme = "README.md"
keywords = ["graphics"]
license-file = "LICENSE"
repository = "https://github.com/cmhamel/thanatos"
[lib]
name = "thanatos"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "thanatos"
path = "src/main.rs"
[[test]]
name = "circle"
path = "tests/circle.rs"
[[test]]
name = "difference"
path = "tests/difference.rs"
[[test]]
name = "mesh"
path = "tests/mesh.rs"
[[test]]
name = "rectangle"
path = "tests/rectangle.rs"
[[test]]
name = "rotation"
path = "tests/rotation.rs"
[[test]]
name = "sphere"
path = "tests/sphere.rs"
[[test]]
name = "translation"
path = "tests/translation.rs"
[dependencies.approx]
version = "0.5.1"
[dependencies.bbox]
version = "0.14.1"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.min-max]
version = "0.1.8"
[dependencies.nalgebra]
version = "0.31.4"
features = ["serde-serialize"]
[dependencies.pyo3]
version = "0.22.0"
[dependencies.rayon]
version = "1.10.0"
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.133"