# 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" name = "sparsey" version = "0.13.1" authors = ["Tudor-Cristian Lechințan "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Entity Component System based on sparse sets" readme = "README.md" keywords = [ "component", "ecs", "entity", "gamedev", "system", ] categories = [ "data-structures", "game-development", ] license = "MIT OR Apache-2.0" repository = "https://github.com/LechintanTudor/sparsey" [lib] name = "sparsey" path = "src/lib.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "components_crud" path = "tests/components_crud.rs" [[test]] name = "components_register" path = "tests/components_register.rs" [[test]] name = "entities_crud" path = "tests/entities_crud.rs" [[test]] name = "iterators" path = "tests/iterators.rs" [dependencies.atomic_refcell] version = "0.1.2" [dependencies.hashbrown] version = "0.15" features = ["inline-more"] default-features = false [dependencies.rayon] version = "1.0" optional = true [dependencies.rustc-hash] version = "2.0" default-features = false [features] default = ["std"] parallel = [ "std", "dep:rayon", ] std = ["rustc-hash/std"] [lints.clippy] cast-possible-truncation = "allow" missing-errors-doc = "allow" missing-panics-doc = "allow" missing-safety_doc = "allow" module-name-repetitions = "allow" needless-doctest-main = "allow" wildcard-imports = "allow" [lints.clippy.pedantic] level = "warn" priority = -1 [lints.rust] missing-docs = "warn"