-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 709 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 709 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
[package]
name = "startin"
version = "0.8.3"
authors = ["Hugo Ledoux <h.ledoux@tudelft.nl>"]
edition = "2021"
license = "MIT"
description = "A Delaunay triangulator for terrains."
repository = "https://github.com/hugoledoux/startin"
keywords = ["delaunay", "triangulation", "terrain", "gis"]
readme = "README.md"
[dependencies]
rand = "0.6"
robust = "1.1"
kdbush = "0.2.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dev-dependencies]
csv = "1"
geojson = "0.24"
las = { version = "0.8", features = ["laz"] }
# gdal = { version = "0.16" }
gdal = { version = "0.16", features = ["bindgen"] }
assert_approx_eq = "1.1.0"
[features]
c_api = []
[lib]
name = "startin"
crate-type = ["lib", "cdylib"]