realism 0.2.2

A high-performance, production-ready scene management crate for Rust game engines
Documentation
[[bench]]
harness = false
name = "entity_bench"
path = "benches/entity_bench.rs"

[[bench]]
harness = false
name = "scene_spatial_bench"
path = "benches/scene_spatial_bench.rs"

[[bench]]
harness = false
name = "transform_bench"
path = "benches/transform_bench.rs"

[dependencies.glam]
version = "0.30.9"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2"

[dependencies.xxhash-rust]
features = ["xxh3"]
version = "0.8"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"

[features]
default = ["simd-scalar"]
simd-native = []
simd-scalar = []

[lib]
name = "realism"
path = "src/lib.rs"

[package]
authors = ["Saptak Santra"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-engines", "game-development"]
description = "A high-performance, production-ready scene management crate for Rust game engines"
edition = "2021"
keywords = ["game-development", "ecs", "scene-graph", "game-engine"]
license = "Apache-2.0"
name = "realism"
readme = "README.md"
repository = "https://github.com/saptak7777/Realism"
version = "0.2.2"

[[test]]
name = "component_tests"
path = "tests/component_tests.rs"

[[test]]
name = "core_tests"
path = "tests/core_tests.rs"

[[test]]
name = "entity_tests"
path = "tests/entity_tests.rs"

[[test]]
name = "physics_tests"
path = "tests/physics_tests.rs"

[[test]]
name = "prefab_tests"
path = "tests/prefab_tests.rs"

[[test]]
name = "render_tests"
path = "tests/render_tests.rs"

[[test]]
name = "scene_tests"
path = "tests/scene_tests.rs"

[[test]]
name = "spatial_tests"
path = "tests/spatial_tests.rs"

[[test]]
name = "streaming_tests"
path = "tests/streaming_tests.rs"

[[test]]
name = "transform_tests"
path = "tests/transform_tests.rs"