-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
40 lines (34 loc) · 885 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
[package]
name = "las"
version = "0.9.2"
authors = ["Pete Gadomski <[email protected]>"]
description = "Reads and writes point clouds stored in the ASPRS las file format."
documentation = "https://docs.rs/las"
homepage = "https://github.com/gadomski/las-rs"
repository = "https://github.com/gadomski/las-rs"
readme = "README.md"
keywords = ["lidar", "pointcloud", "las", "gis", "ASPRS"]
license = "MIT"
categories = ["science", "data-structures"]
edition = "2021"
[dependencies]
byteorder = "1.4"
chrono = "0.4"
laz = { version = "0.9.1", optional = true }
log = "0.4"
num-traits = "0.2"
thiserror = "2.0"
uuid = "1"
[dev-dependencies]
criterion = "0.5"
[features]
laz = ["dep:laz"]
laz-parallel = ["dep:laz", "laz/parallel"]
[lib]
bench = false
[[bench]]
name = "roundtrip"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]