necs 0.2.1

An ECS implementation, primarily serving as a learning project
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 = "2024"
name = "necs"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An ECS implementation, primarily serving as a learning project"
readme = "README.md"
keywords = [
    "ecs",
    "entity",
]
categories = [
    "game-engines",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/nullved/necs"

[package.metadata.docs.rs]
all-features = true

[features]
archetypes = []

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

[[example]]
name = "advanced_queries"
path = "examples/advanced_queries.rs"
required-features = ["archetypes"]

[[example]]
name = "bundle"
path = "examples/bundle.rs"
required-features = ["archetypes"]

[[example]]
name = "complicated-damage"
path = "examples/complicated-damage.rs"
required-features = ["archetypes"]

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

[[example]]
name = "query"
path = "examples/query.rs"
required-features = ["archetypes"]

[[example]]
name = "simple-damage"
path = "examples/simple-damage.rs"

[dependencies]