forked from mthh/contour-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1 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
[package]
name = "contour"
version = "0.13.1"
authors = ["Matthieu Viry <[email protected]>"]
edition = "2021"
description = "Compute isorings and contour polygons (using marching squares algorithm)."
repository = "https://github.com/mthh/contour-rs"
homepage = "https://github.com/mthh/contour-rs"
documentation = "https://docs.rs/contour"
readme = "README.md"
keywords = ["contour", "polygon", "isoring", "marching-squares", "geojson"]
license = "MIT OR Apache-2.0"
[dependencies]
geojson = { version = ">=0.16, <=0.24", optional = true }
geo-types= { version = "0.7" }
lazy_static = "1.0"
serde_json = { version = "^1.0", optional = true }
rustc-hash = "1.0"
slab = "0.4"
[dev-dependencies]
serde_json = "^1.0"
criterion = { version = "0.5", features = ["html_reports"] }
[features]
geojson = ["dep:geojson", "dep:serde_json"]
f32 = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "ex"
required-features = ["geojson"]
[[bench]]
name = "bench"
harness = false