# 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.70" name = "bytesbox" version = "0.4.0" authors = ["nutsloop "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ ByteBox is a high-performance hash map implementation optimized for byte slices. It efficiently maps keys and values of type Vec, providing full ownership of the data. ByteBox uses a custom hash function with linked-list-based collision handling, ensuring low memory overhead and optimal performance. """ homepage = "https://crates.io/crates/bytesbox" readme = "README.md" keywords = [ "byte-slice", "hash", "performance", "memory", ] categories = [ "data-structures", "no-std", "memory-management", ] license = "Apache-2.0" repository = "https://github.com/nutsloop/bytesbox" [lib] name = "bytesbox" path = "src/lib.rs" [[test]] name = "auto_resize" path = "tests/auto_resize.rs" [[test]] name = "clear" path = "tests/clear.rs" [[test]] name = "collision" path = "tests/collision.rs" [[test]] name = "insert" path = "tests/insert.rs" [[test]] name = "iter" path = "tests/iter.rs" [[test]] name = "remove" path = "tests/remove.rs" [[test]] name = "update" path = "tests/update.rs" [dependencies.bytescolor] version = "0.1.0" optional = true [features] color = ["bytescolor"]