[package] name = "dungeon-cell" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Store (almost) any value as one type without dynamic memory." repository = "https://gitlab.com/konnorandrews/dungeon-cell" readme = "README.md" rust-version = "1.64.0" [dependencies] const_panic = { version = "0.2.0", default-features = false } [dev-dependencies] slotmap = "1.0.6" static_assertions = "1.1.0" [features] default = [] std = ["alloc"] alloc = [] # Enable use of nightly feature `unsize`. unsize = [] # Enable `AutoCoerceFrom` for functions with arguments 11-30. many_arg_fn = []