sky_ecs 0.1.3

High-performance typed chunk-based ECS for Rust
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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "sky_ecs"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance typed chunk-based ECS for Rust"
homepage = "https://github.com/jz315/SkyECS"
documentation = "https://docs.rs/sky_ecs"
readme = "README.md"
keywords = [
    "ecs",
    "game",
    "data-oriented",
    "parallel",
    "performance",
]
categories = [
    "data-structures",
    "game-development",
]
license = "MIT"
repository = "https://github.com/jz315/SkyECS"

[features]
default = []
profile = ["dep:sky_profile"]

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

[[example]]
name = "step_01_world"
path = "examples/step_01_world.rs"

[[example]]
name = "step_02_queries"
path = "examples/step_02_queries.rs"

[[example]]
name = "step_03_batches_and_chunks"
path = "examples/step_03_batches_and_chunks.rs"

[[example]]
name = "step_04_commands"
path = "examples/step_04_commands.rs"

[[example]]
name = "step_05_systems"
path = "examples/step_05_systems.rs"

[[example]]
name = "step_06_parallel"
path = "examples/step_06_parallel.rs"

[[example]]
name = "step_07_tiny_defense"
path = "examples/step_07_tiny_defense.rs"

[[example]]
name = "step_08_dynamic"
path = "examples/step_08_dynamic.rs"

[[example]]
name = "step_09_plugin"
path = "examples/step_09_plugin.rs"

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

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

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

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

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

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

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

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

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

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

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.rayon]
version = "1.10"

[dependencies.rustc-hash]
version = "2.1.2"

[dependencies.sky_ecs_derive]
version = "0.1.0"

[dependencies.sky_profile]
version = "0.1.0"
optional = true

[dependencies.sky_type]
version = "0.1.1"

[dependencies.smallvec]
version = "1.13.2"

[dev-dependencies.criterion]
version = "0.8.2"