2024-03-17 14:46:15 +02:00
|
|
|
[package]
|
2024-03-26 11:00:28 +02:00
|
|
|
name = "xenobalanus"
|
2024-04-10 06:02:33 +03:00
|
|
|
version = "0.1.4"
|
2024-03-17 14:46:15 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2024-03-26 11:00:28 +02:00
|
|
|
[lib]
|
|
|
|
|
name = "xenobalanus"
|
2024-03-17 14:46:15 +02:00
|
|
|
|
2024-04-07 19:15:39 +03:00
|
|
|
[features]
|
|
|
|
|
default = ["three-d"]
|
|
|
|
|
three-d = ["dep:simple_delaunay_lib"]
|
|
|
|
|
|
2024-03-17 14:46:15 +02:00
|
|
|
[dependencies]
|
|
|
|
|
delaunator = "1.0.2"
|
|
|
|
|
geo = "0.28.0"
|
2024-03-19 12:14:47 +02:00
|
|
|
geo-types = "0.7.13"
|
2024-03-17 19:18:53 +02:00
|
|
|
itertools = "0.12.1"
|
2024-03-17 14:46:15 +02:00
|
|
|
rand = "0.8.5"
|
2024-03-17 16:36:07 +02:00
|
|
|
rayon = "1.9.0"
|
2024-03-17 19:18:53 +02:00
|
|
|
statrs = "0.16.0"
|
2024-04-07 19:15:39 +03:00
|
|
|
simple_delaunay_lib = { version = "0.2.0", git = "https://github.com/ibujah/simple_delaunay_lib", optional = true }
|