-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
79 lines (66 loc) · 1.83 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "boostvoronoi"
version = "0.11.0"
authors = ["eadf <[email protected]>"]
edition = "2021"
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"]
exclude = [
"img/*",
"idea/*",
".github/*",
"examples/input_data/*"
]
[workspace]
members = ["workspace/boostvoronoi_core", "workspace/boostvoronoi_ext"]
[dependencies]
boostvoronoi_core = { path = "workspace/boostvoronoi_core", version="=0.11.0", default-features = false}
boostvoronoi_ext = { path = "workspace/boostvoronoi_ext", version="=0.11.0", default-features = false}
# These features are only for debug purposes, should normally not be used
[features]
console_debug = ["boostvoronoi_core/console_debug"]
ce_corruption_check = ["boostvoronoi_core/ce_corruption_check"]
# Math type conversions.
glam = ["boostvoronoi_core/glam"]
mint = ["boostvoronoi_core/mint"]
geo = ["boostvoronoi_core/geo"]
cgmath = ["boostvoronoi_core/cgmath"]
nalgebra = ["boostvoronoi_core/nalgebra"]
serde = ["boostvoronoi_core/serde"]
[[example]]
name = "fltk_gui"
path = "example/fltk_gui.rs"
# this example is for development test purposes only
[[example]]
name = "main"
path = "example/main.rs"
# this is the README.md example
[[example]]
name = "readme"
path = "example/readme.rs"
[[example]]
name = "stress_test"
path = "example/stress_test.rs"
required-features = ["geo"]
[dev-dependencies]
approx = "0.5.1"
fltk = "1.4.15"
criterion = "0.5.1"
regex = "1.10.2"
rand = "0.8.5"
lazy_static = "1.4.0"
bitflags = "2.4.1"
geo_cr = {package="geo", version="0.26"}
ordered-float = "4.1.1"
vob="3.0.3"
serde_json = "1.0.107"
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true
[badges]
maintenance = { status = "actively-developed" }