-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 794 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (33 loc) · 794 Bytes
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
[package]
name = "delaunator"
version = "1.1.0"
edition = "2021"
rust-version = "1.87"
description = "A very fast 2D Delaunay triangulation library."
documentation = "https://docs.rs/delaunator"
repository = "https://github.com/mourner/delaunator-rs"
readme = "README.md"
license = "ISC"
categories = ["algorithms", "data-structures"]
keywords = ["delaunay", "triangulation", "tessellation", "spatial", "geometry"]
authors = ["Vladimir Agafonkin <agafonkin@gmail.com>"]
[dependencies]
robust = "1.2.0"
[dev-dependencies]
criterion = "0.8"
rand = "0.10"
serde_json = "1.0"
[features]
default = ["std"]
std = []
[lib]
bench = false
[[bench]]
name = "bench"
harness = false
[[example]]
name = "triangulate"
path = "examples/triangulate.rs"
[[example]]
name = "svg"
path = "examples/svg.rs"