# 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 = "apecs" version = "0.8.4" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An asyncronous and parallel entity-component system" documentation = "https://docs.rs/apecs/" readme = "README.md" keywords = [ "gamedev", "ecs", "async", ] categories = [ "concurrency", "game-engines", ] license = "MIT OR Apache-2.0" repository = "https://github.com/schell/apecs" [lib] name = "apecs" path = "src/lib.rs" bench = false [[test]] name = "regression" path = "tests/regression.rs" [[test]] name = "unit" path = "tests/unit.rs" [[test]] name = "wasm" path = "tests/wasm.rs" [dependencies.any_vec] version = "0.10" [dependencies.apecs-derive] version = "0.3.0" [dependencies.async-channel] version = "1.6" [dependencies.itertools] version = "0.10" [dependencies.log] version = "0.4" [dependencies.moongraph] version = "0.4.3" features = ["parallel"] default-features = false [dependencies.parking_lot] version = "0.12" [dependencies.rayon] version = "1.5" [dependencies.smallvec] version = "1.9" [dependencies.snafu] version = "0.8" [dev-dependencies.async-broadcast] version = "0.4" [dev-dependencies.env_logger] version = "0.9" [dev-dependencies.futures-lite] version = "1.12.0" [dev-dependencies.smol] version = "2.0" [dev-dependencies.wasm-bindgen-futures] version = "0.4" [dev-dependencies.wasm-bindgen-test] version = "0.3" [features] default = [ "derive", "panic_on_async_holdup", ] derive = [] panic_on_async_holdup = []