-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 939 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
[package]
name = "e57-to-las"
description = "Convert E57 point cloud files to LAS"
version = "0.7.0"
readme = "README.md"
license = "MIT"
edition = "2021"
homepage = "https://github.com/nivalis-studio/e57-to-las"
repository = "https://github.com/nivalis-studio/e57-to-las"
keywords = ["e57", "lidar", "pointclouds", "laserscanning", "geospatial"]
categories = ["science::geo"]
authors = ["pnodet <[email protected]>", "pnwa <[email protected]>"]
exclude = ["/examples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive"] }
e57 = "0.11.7"
serde_json = { version = "1.0.133" }
serde = { version = "1.0.215", features = ["derive"] }
las = "0.9.2"
rayon = "1.10.0"
uuid = { version = "1.11.0", features = ["v4"] }
thiserror = { version = "2.0.3" }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1