# 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 = "contiguous-mem" version = "0.4.2" authors = ["Tin Å vagelj "] description = "A contiguous memory storage" readme = "README.md" keywords = [ "memory", "contiguous", "storage", "container", "nostd", ] categories = [ "data-structures", "memory-management", "no-std", ] license = "MIT OR Apache-2.0 OR Zlib" repository = "https://github.com/Caellian/contiguous_mem" [package.metadata.docs.rs] all-features = true [[example]] name = "ptr_metadata" path = "examples/ptr_metadata.rs" required-features = ["ptr_metadata"] [dependencies.portable-atomic] version = "1" optional = true default-features = false [dependencies.spin] version = "0.9" optional = true [dev-dependencies.byteorder] version = "1.4" [features] debug = [] default = [] error_in_core = [] no_std = [ "dep:portable-atomic", "dep:spin", ] ptr_metadata = []