-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (35 loc) · 812 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
[package]
name = "rdp"
version = "0.12.8"
authors = ["Stephan Hügel <urschrei@gmail.com>"]
description = "An FFI wrapper for the Ramer–Douglas–Peucker and Visvalingam-Whyatt algorithms"
readme = "README.md"
keywords = ["geo", "Ramer", "Douglas-Peucker", "Visvalingam-Whyatt"]
documentation = "https://docs.rs/rdp"
homepage = "https://crates.io/crates/rdp"
repository = "https://github.com/urschrei/rdp"
license = "MIT"
edition = "2021"
[dependencies]
libc = "0.2.147"
geo = "0.26.0"
geo-types = "0.7.10"
num-traits = "0.2.15"
[dev-dependencies]
criterion = "0.4"
[build-dependencies]
cbindgen = "0.26.0"
[features]
headers = []
[lib]
name = "rdp"
crate-type = ["cdylib"]
test = true
doctest = false
doc = true
[profile.release]
lto = true
codegen-units = 1
[[bench]]
name = "benches"
harness = false