[package]
edition = "2021"
rust-version = "1.77"
name = "roxlap-scene"
version = "0.9.0"
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.9"
[dependencies.roxlap-core]
version = "0.9"
[dependencies.roxlap-formats]
version = "0.9"
[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]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
float_cmp = "allow"
items_after_statements = "allow"
manual_assert = "allow"
many_single_char_names = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
needless_for_each = "allow"
similar_names = "allow"
single_match_else = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
verbose_bit_mask = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"