forked from urschrei/polylabel-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 727 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
[package]
name = "pylylabel"
version = "4.0.0"
authors = ["Stephan Hügel <urschrei@gmail.com>", "Andy Wang <cbeuw.andy@gmail.com>"]
description = "A Rust implementation of the Polylabel algorithm for finding optimum polygon label positions, with Python binding."
readme = "README.md"
keywords = ["geo", "polylabel", "gis"]
license = "MIT"
edition = "2018"
[dependencies]
geo = "0.18.0"
num-traits = "0.2.8"
thiserror = "1.0.4"
[dev-dependencies]
criterion = "0.3.0"
[dependencies.pyo3]
version = "0.15.0"
features = ["extension-module"]
[lib]
name = "pylylabel"
crate-type = ["rlib", "cdylib"]
test = true
doctest = true
doc = true
[profile.release]
rpath = true
lto = true
[[bench]]
name = "benchmark"
harness = false