# 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 = "department" version = "0.2.6" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Implementation of the proposed Storages API" readme = "README.md" keywords = [ "allocator", "collection", "nightly", "storage", "no_std", ] categories = ["no-std"] license = "MIT OR Apache-2.0" repository = "https://github.com/CraftSpider/department" [lib] name = "department" path = "src/lib.rs" [[example]] name = "thin_box" path = "examples/thin_box.rs" [dependencies.spin] version = "0.9.8" features = [ "spin_mutex", "mutex", ] default-features = false [dev-dependencies.spin] version = "0.9.8" features = ["rwlock"] default-features = false [features] all_collections = [ "box", "rc", "vec", "linked", "string", ] all_storages = [ "inline", "static", "alloc", "fallback", "debug", "heap", ] alloc = [] box = [] debug = [ "alloc", "vec", ] default = [ "std", "unsize", "all_storages", "all_collections", ] fallback = [] heap = [] inline = [] linked = [] rc = [] static = [] std = [] string = ["vec"] unsize = [] vec = []