[package] name = "simple_delaunay_lib" version = "0.2.0" edition = "2021" license = "MIT" description = "Implementation of 2D and 3D Delaunay algorithms in Rust" repository = "https://github.com/Ibujah/simple_delaunay_lib" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "simple_delaunay_lib" path = "src/lib.rs" [dependencies] robust = "1.1.0" anyhow = "1.0.66" log="0.4.20" [dev-dependencies] env_logger="0.10.0" nalgebra = "0.31.3" rand = "0.8.5" svg = "0.13.1" ctor="0.2.6" [[example]] name = "delaunay_2d" path = "example/delaunay_2d.rs" [[example]] name = "hilbert_curve_2d" path = "example/hilbert_curve_2d.rs" [[example]] name = "computation_time_2d" path = "example/computation_time_2d.rs" [[example]] name = "computation_time_3d" path = "example/computation_time_3d.rs"