boostvoronoi 0.8.1

Boost voronoi ported to 100% rust
Documentation
[package]
name = "boostvoronoi"
version = "0.8.1"
authors = ["eadf"]
edition = "2018"
description = "Boost voronoi ported to 100% rust"
readme = "README.md"
repository = "https://github.com/eadf/boostvoronoi.rs"
license = "BSL-1.0"
keywords = ["voronoi", "sweepline", "geometry"]

[dependencies]
num = ">=0.3.1,<0.5.0"
ordered-float = "^2.1.1"
fnv = "^1.0.7"
vec_map = "^0.8.2"
yabf = {version="^0.1.0",default-features=false}
num-traits = "^0.2.14"
thiserror = "^1.0.24"
bitflags = "^1.2.1"
libm = "^0.2.1"
smallvec = "^1.6.1"
#lazy_static = "1.4.0" # not used yet

# These features are only for debug purposes, should normally not be used
[features]
console_debug = []
console_debug_eval = []
cpp_compat_debug = []
debug_always_exact = []

[[example]]
name = "fltk_gui"
path = "example/fltk_gui.rs"

# this bin is for development test purposes
[[bin]]
name = "main"
path = "example/main.rs"

[dev-dependencies]
geo = "^0.17.1"
fltk = "^0.16.5"
criterion = "^0.3.4"
approx = "^0.4.0"

[[bench]]
name = "bench"
harness = false