[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 ", "pnwa "] exclude = ["/examples"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.86" clap = { version = "4.5.7", features = ["derive"] } e57 = "0.11.5" serde_json = { version = "1.0.117" } serde = { version = "1.0.203", features = ["derive"] } las = "0.9.1" rayon = "1.10.0" uuid = { version = "1.8.0", features = ["v4"] } thiserror = { version = "1.0.63" }