[package]
edition = "2021"
rust-version = "1.77"
name = "copc-writer"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust COPC writer with streaming LAS intake"
homepage = "https://github.com/roteiro-gis/copc-rust"
documentation = "https://docs.rs/copc-writer"
readme = "README.md"
keywords = [
"copc",
"las",
"laz",
"point-cloud",
"gis",
]
categories = [
"science",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/roteiro-gis/copc-rust"
[lib]
name = "copc_writer"
path = "src/lib.rs"
[[test]]
name = "reader_query_conformance"
path = "tests/reader_query_conformance.rs"
[[test]]
name = "write_parse"
path = "tests/write_parse.rs"
[dependencies.byteorder]
version = "1"
[dependencies.copc-core]
version = "0.1.0"
[dependencies.las]
version = "0.8"
features = ["laz"]
[dependencies.laz]
version = "0.8"
[dependencies.memmap2]
version = "0.9"
[dev-dependencies.copc-reader]
version = "0.1.0"
[dev-dependencies.tempfile]
version = "3"
default-features = false