[package]
edition = "2021"
rust-version = "1.77"
name = "roxlap-scene"
version = "0.4.1"
authors = ["Anton Gushcha <ncrashed@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scene-graph layer for the roxlap voxel engine: many independent chunked voxel grids, each with f64 world position and Quat rotation."
documentation = "https://docs.rs/roxlap-scene"
readme = "README.md"
keywords = [
"voxlap",
"voxel",
"scene-graph",
"chunk",
"engine",
]
categories = [
"game-development",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/NCrashed/roxlap"
[lib]
name = "roxlap_scene"
path = "src/lib.rs"
[[test]]
name = "axis_aligned_beam_repro"
path = "tests/axis_aligned_beam_repro.rs"
[[test]]
name = "mip_repro"
path = "tests/mip_repro.rs"
[dependencies.glam]
version = "0.30"
features = [
"std",
"serde",
]
default-features = false
[dependencies.roxlap-cavegen]
version = "0.4"
[dependencies.roxlap-core]
version = "0.4"
[dependencies.roxlap-formats]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.bincode]
version = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.crossbeam-channel]
version = "0.5"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.10"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"