# 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 = "vmem" version = "1.0.0" authors = ["Lysander Mealy (lylythechosenone)"] description = """ Vmem is a resource management system theorized by Jeff Bonwick and Jonathan Adams in *[Magazines and Vmem: Extending the Slab Allocator to Many CPUs and Arbitrary Resources][1]*. It provides O(1) allocation and deallocation of any opaque numerical 'resource,' such as a block of memory or a process ID.""" readme = "README.md" keywords = [ "no_std", "allocator", "vmem", "resource", ] categories = [ "no-std", "no-std::no-alloc", "memory-management", ] license = "MIT OR Apache-2.0" repository = "https://github.com/lylythechosenone/vmem" [[example]] name = "repl" required-features = ["std"] [dependencies.portable-atomic] version = "1" [dependencies.rustc-hash] version = "1" default-features = false [dependencies.spin] version = "0.9" optional = true [dev-dependencies.anyhow] version = "1" [dev-dependencies.clap] version = "4" features = ["derive"] [dev-dependencies.clap-num] version = "1" [dev-dependencies.linefeed] version = "0.6" [features] default = ["nightly"] nightly = [] spin = ["dep:spin"] std = []