# 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 = "slice-cell" version = "0.0.5" authors = ["Zachary S"] description = "A `Cell<[T]>`-like mutable slice, that allows slice-like APIs." readme = "README.md" keywords = [ "cell", "no_std", ] categories = ["data-structures"] license = "MIT OR Apache-2.0" repository = "https://github.com/zachs18/slice-cell" [dependencies.tokio] version = "1.24.1" optional = true default-features = false [features] alloc = [] default = [ "std", "rc", ] full = [ "std", "rc", "tokio", ] rc = ["alloc"] std = ["alloc"] tokio = [ "dep:tokio", "std", ] tokio_assumptions = ["tokio"]