[package]
edition = "2024"
rust-version = "1.90"
name = "ogeom-intersect"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Curve/curve, curve/surface and surface/surface intersection"
homepage = "https://gilbertorconde.github.io/ogeom-rs/"
readme = "README.md"
keywords = [
"cad",
"geometry",
"brep",
"kernel",
"solid-modeling",
]
categories = [
"graphics",
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gilbertorconde/ogeom-rs"
[lib]
name = "ogeom_intersect"
path = "src/lib.rs"
[[test]]
name = "branch_points"
path = "tests/branch_points.rs"
[[test]]
name = "hard"
path = "tests/hard.rs"
[[test]]
name = "instruments"
path = "tests/instruments.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[dependencies.nalgebra]
version = "0.35"
[dependencies.ogeom-core]
version = "0.3.4"
[dependencies.ogeom-geom]
version = "0.3.4"
[dependencies.ogeom-math]
version = "0.3.4"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
cast_possible_truncation = "warn"
cast_precision_loss = "warn"
expect_used = "warn"
undocumented_unsafe_blocks = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"