-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 832 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
37
38
[package]
name = "wkt"
description = "Rust read/write support for well-known text (WKT)"
version = "0.14.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/georust/wkt"
autobenches = true
readme = "README.md"
keywords = ["geo", "geospatial", "wkt"]
edition = "2021"
[dependencies]
geo-types = { version = "0.7.8", optional = true }
geo-traits = "0.3"
num-traits = "0.2"
serde = { version = "1.0", default-features = false, optional = true }
thiserror = "1.0.23"
log = "0.4.17"
[dev-dependencies]
criterion = "0.5.1"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
[features]
default = ["geo-types"]
[[bench]]
name = "parse"
harness = false
[[bench]]
name = "write"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]