# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "las" version = "0.9.2" authors = ["Pete Gadomski "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Reads and writes point clouds stored in the ASPRS las file format." homepage = "https://github.com/gadomski/las-rs" documentation = "https://docs.rs/las" readme = "README.md" keywords = [ "lidar", "pointcloud", "las", "gis", "ASPRS", ] categories = [ "science", "data-structures", ] license = "MIT" repository = "https://github.com/gadomski/las-rs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "las" path = "src/lib.rs" bench = false [[example]] name = "count" path = "examples/count.rs" [[test]] name = "autzen" path = "tests/autzen.rs" [[test]] name = "laszip" path = "tests/laszip.rs" [[test]] name = "permissive_reading" path = "tests/permissive_reading.rs" [[test]] name = "roundtrip" path = "tests/roundtrip.rs" [[bench]] name = "roundtrip" path = "benches/roundtrip.rs" harness = false [dependencies.byteorder] version = "1.4" [dependencies.chrono] version = "0.4" [dependencies.laz] version = "0.9.1" optional = true [dependencies.log] version = "0.4" [dependencies.num-traits] version = "0.2" [dependencies.thiserror] version = "1.0" [dependencies.uuid] version = "1" [dev-dependencies.criterion] version = "0.5" [features] laz = ["dep:laz"] laz-parallel = [ "dep:laz", "laz/parallel", ]