-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 898 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
39
40
41
42
[package]
name = "kml"
version = "0.13.0"
authors = [
"Pat Sier <pjsier@gmail.com>",
"The GeoRust Developers <mods@georust.org>",
]
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 = "2.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"]