[package]
edition = "2024"
rust-version = "1.97"
name = "renew-scene"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local placements, parenting, and a propagation pass composing them over entity storage"
homepage = "https://renew-engine.github.io/renew/"
readme = "README.md"
keywords = [
"gamedev",
"scene-graph",
"transform",
"ecs",
"engine",
]
categories = [
"game-development",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/renew-engine/renew"
[package.metadata.renew]
purpose = "Local placements and parent links held as components, and the pass that composes them into world placements, resolving a parent before its children wherever the links form a forest and cutting each loop in exactly one place where they do not."
maturity = "bootstrap"
core = false
extension_points = []
simulation = true
[features]
sanitized = []
[lib]
name = "renew_scene"
path = "src/lib.rs"
[[test]]
name = "propagate"
path = "tests/propagate.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "zero_alloc"
path = "tests/zero_alloc.rs"
[dependencies.renew-ecs]
version = "0.1.1"
[dependencies.renew-fixed]
version = "0.1.1"
[dev-dependencies.proptest]
version = "1.11"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"