wblidar 0.1.1

High-performance library for reading and writing LiDAR point cloud data (LAS, LAZ, COPC, PLY, E57)
Documentation
# 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 = "wblidar"
version = "0.1.1"
authors = ["John Lindsay, Whitebox Geospatial Inc."]
build = false
exclude = [
    "docs/internal/**",
    "tools/**",
    "artifacts/**",
    ".DS_Store",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance library for reading and writing LiDAR point cloud data (LAS, LAZ, COPC, PLY, E57)"
homepage = "https://github.com/jblindsay/whitebox_next_gen"
documentation = "https://docs.rs/wblidar"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jblindsay/whitebox_next_gen"

[features]
copc-http = ["dep:reqwest"]
copc-parallel = ["dep:rayon"]
default = []
laz-parallel = ["dep:rayon"]
parallel = [
    "copc-parallel",
    "laz-parallel",
]

[lib]
name = "wblidar"
path = "src/lib.rs"

[[example]]
name = "copc_query_demo"
path = "examples/copc_query_demo.rs"

[[example]]
name = "copc_query_extract_las"
path = "examples/copc_query_extract_las.rs"

[[example]]
name = "las_to_copc"
path = "examples/las_to_copc.rs"

[[example]]
name = "laz_to_copc"
path = "examples/laz_to_copc.rs"

[[example]]
name = "laz_write_standards"
path = "examples/laz_write_standards.rs"

[[example]]
name = "lidar_reproject"
path = "examples/lidar_reproject.rs"

[[test]]
name = "standards_external_validation"
path = "tests/standards_external_validation.rs"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.reqwest]
version = "0.12"
features = [
    "blocking",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.wbprojection]
version = "0.1.0"

[dependencies.wide]
version = "1.2"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tiny_http]
version = "0.12"