-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
50 lines (41 loc) · 927 Bytes
/
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
[package]
name = "voronoice"
version = "0.2.0"
edition = "2018"
authors = ["Andre Esteve <[email protected]>"]
description = "A nice and fast way to construct 2D Voronoi Diagrams"
repository = "https://github.com/andreesteve/voronoice"
license = "MIT"
keywords = ["voronoi", "delaunay", "graphics", "diagram"]
categories = ["graphics", "visualization"]
readme = "README.md"
[dependencies]
delaunator = { version = "^1" }
[dev-dependencies]
criterion = "0.3.5"
rand = "0.8.1"
image = "0.23.14"
serde_json = "1.0"
clap = { version = "3.1", features = ["derive"] }
robust = { version = "^0.2" }
[[bench]]
name = "quick"
harness = false
[[bench]]
name = "large"
harness = false
[[bench]]
name = "huge"
harness = false
[[bench]]
name = "compare_with_deps"
harness = false
[[bench]]
name = "profile"
harness = false
[[example]]
name = "image"
path = "examples/image.rs"
[[example]]
name = "svg"
path = "examples/svg.rs"