# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "tiny_ecs" version = "0.19.6" authors = ["Luke Jones "] include = ["src/*.rs", "Cargo.toml", "LICENSE"] description = "A tiny ECS that tries to avoid unnecessary copy/clones" homepage = "https://gitlab.com/flukejones/tiny_ecs" documentation = "https://docs.rs/tiny_ecs/" readme = "README.md" keywords = ["ecs", "entity", "component", "system", "tiny"] categories = ["data-structures", "game-engines"] license = "MPL-2.0" repository = "https://gitlab.com/flukejones/tiny_ecs" [profile.bench] opt-level = 3 debug = false [lib] crate-type = ["dylib", "rlib"] [[bench]] name = "bench" path = "benches/benchmarks.rs" harness = false [dependencies.hashbrown] version = "0.8" [dependencies.persist-o-vec] version = "0.3.1" [dev-dependencies.bencher] version = "0.1.5" [features] component_max_127 = [] component_max_31 = [] component_max_63 = [] default = ["component_max_63"] [badges.gitlab] branch = "master" repository = "ljcode/tiny_ecs"