laz 0.12.2

Rust port of Laszip compression. of the LAS format
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 = "laz"
version = "0.12.2"
authors = ["tmontaigu <thomas.montaigu@laposte.net>"]
build = false
exclude = ["tests/data"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of Laszip compression. of the LAS format"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/tmontaigu/laz-rs"

[package.metadata.docs.rs]
features = ["parallel"]

[features]
default = []
parallel = ["rayon"]

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

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

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

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

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

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

[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false

[dependencies.byteorder]
version = "1.4.3"

[dependencies.num-traits]
version = "0.2.14"

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

[dev-dependencies.clap]
version = "4.5.3"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.glob]
version = "0.3.0"

[dev-dependencies.indicatif]
version = "0.17.8"