# 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" rust-version = "1.56" name = "smallbox" version = "0.8.5" authors = ["andylokandy"] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "`Small Box` optimization: store small item on stack and fallback to heap for large item." documentation = "https://andylokandy.github.io/smallbox" readme = "README.md" keywords = [ "box", "alloc", "dst", "stack", "no_std", ] categories = ["data-structures"] license = "MIT" repository = "https://github.com/andylokandy/smallbox" [lib] name = "smallbox" path = "src/lib.rs" [[bench]] name = "lib" path = "benches/lib.rs" [features] coerce = [] default = ["std"] nightly = ["coerce"] std = []