-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (32 loc) · 940 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
[package]
name = "simplify-polyline"
version = "0.5.0"
description = "Simplify polylines using Douglas-Peucker and radial distance algorithms. Port of the simplify-js library."
homepage = "https://github.com/kade-robertson/simplify-polyline"
repository = "https://github.com/kade-robertson/simplify-polyline"
license = "MIT"
edition = "2021"
rust-version = "1.60"
keywords = ["simplify", "polyline", "geometry", "simplify-js"]
categories = ["mathematics", "graphics"]
[dependencies]
num-traits = "0.2"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
serde_json = "=1.0.107"
criterion = "=0.4.0"
regex = "=1.9.6"
memchr = "=2.6.2"
rayon-core = "=1.11.0"
os_str_bytes = "=6.5.1"
[features]
serde = ["dep:serde"]
[[test]]
name = "integration"
path = "tests/integration.rs"
required-features = ["serde"]
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
required-features = ["serde"]