building-blocks 0.7.1

Data types, collections, and algorithms for working with maps on 2D and 3D integer lattices. Commonly known as voxel data.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "building-blocks"
version = "0.7.1"
authors = ["Duncan <bonsairobo@gmail.com>"]
description = "Data types, collections, and algorithms for working with maps on 2D and 3D integer lattices. Commonly known as voxel data."
keywords = ["voxel"]
license = "MIT"
repository = "https://github.com/bonsairobo/building-blocks"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
lto = "thin"

[profile.dev]
opt-level = 2

[profile.release]
lto = "thin"

[[bin]]
name = "measure_compression_rate"
path = "src/bin/measure_compression_rate.rs"
required-features = ["dot_vox", "lz4", "snappy"]
[dependencies.building_blocks_core]
version = "0.7.1"
default-features = false

[dependencies.building_blocks_mesh]
version = "0.7.1"
optional = true
default-features = false

[dependencies.building_blocks_search]
version = "0.7.1"
optional = true
default-features = false

[dependencies.building_blocks_storage]
version = "0.7.1"
default-features = false

[dev-dependencies]

[features]
default = ["lz4", "mesh", "sdfu", "search"]
dot_vox = ["building_blocks_storage/dot_vox"]
glam = ["building_blocks_core/glam"]
image = ["building_blocks_storage/image"]
lz4 = ["building_blocks_storage/lz4"]
mesh = ["building_blocks_mesh"]
mint = ["building_blocks_core/mint"]
nalgebra = ["building_blocks_core/nalgebra"]
ncollide = ["building_blocks_search/ncollide"]
sdfu = ["building_blocks_core/sdfu"]
search = ["building_blocks_search"]
snappy = ["building_blocks_storage/snap"]