# 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 = "stecs" version = "0.1.1" authors = ["Nertsal "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Experimental static compiler-checked ECS library" homepage = "https://github.com/Nertsal/stecs" documentation = "https://docs.rs/stecs" readme = "README.md" license = "MIT" repository = "https://github.com/Nertsal/stecs" [lib] name = "stecs" path = "src/lib.rs" [[example]] name = "blogpost" path = "examples/blogpost.rs" [[example]] name = "full" path = "examples/full.rs" [[example]] name = "generics" path = "examples/generics.rs" [[example]] name = "mutations" path = "examples/mutations.rs" [[bench]] name = "pos_vel" path = "benches/pos_vel.rs" harness = false [dependencies.slotmap] version = "1.0" optional = true [dependencies.stecs-derive] version = "0.1.0" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [features] arena = ["dep:slotmap"] default = [ "arena", "query_mut", ] hashstorage = [] query_mut = ["stecs-derive/query_mut"]