-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
39 lines (34 loc) · 886 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
[package]
name = "kml"
version = "0.8.7"
authors = ["Pat Sier <[email protected]>", "The GeoRust Developers <[email protected]>"]
description = "KML support for Rust"
readme = "README.md"
documentation = "https://docs.rs/kml/"
repository = "https://github.com/georust/kml"
license = "MIT OR Apache-2.0"
edition = "2021"
categories = ["science::geo"]
keywords = ["geo", "geospatial", "kml"]
exclude = [".github/*"]
[dependencies]
quick-xml = "0.37.1"
num-traits = "0.2"
thiserror = "1.0"
geo-types = { version = ">=0.6, <0.8", optional = true }
zip = { version = "2.2", optional = true, default-features = false, features = [
"bzip2",
"deflate",
"time",
"zstd",
] }
[dev-dependencies]
criterion = "0.4"
[features]
default = ["geo-types", "zip"]
[[bench]]
name = "parse"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]