[package]
edition = "2021"
name = "spatial_codec_draco"
version = "0.2.5"
build = "build.rs"
links = "spatial_codec_draco"
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"NOTICE",
"build.rs",
"cbindgen.toml",
"bindings/**",
"docs/**",
"src/**",
"tests/**",
"examples/**",
"draco_wrapper_cpp/**",
"draco/CMakeLists.txt",
"draco/LICENSE",
"draco/AUTHORS",
"draco/README.md",
"draco/cmake/**",
"draco/src/**",
"draco/third_party/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, robust wrapper around the upstream Draco point-cloud codec."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/idlab-discover/spatial-codec-draco/"
[features]
default = []
ffi = ["dep:libc"]
[lib]
name = "spatial_codec_draco"
crate-type = [
"rlib",
"staticlib",
"cdylib",
]
path = "src/lib.rs"
[[example]]
name = "combine_folders"
path = "examples/combine_folders.rs"
[[example]]
name = "roundtrip"
path = "examples/roundtrip.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.clap]
version = "4.5"
features = ["derive"]
[dev-dependencies.nalgebra]
version = "0.34"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tracing]
version = "0.1"
features = ["attributes"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
[build-dependencies.cbindgen]
version = "0.29"
[build-dependencies.cmake]
version = "0.1"