# 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 = "hash_table_datastruct" version = "0.6.3" description = "Adds a HashTable type, allowing to store values in a table with integer-indexed rows and hashable keys for columns" documentation = "https://docs.rs/hash_table_datastruct/latest" readme = "README.md" keywords = [ "struct", "hash", "table", ] categories = [ "data-structures", "rust-patterns", ] license = "MIT" repository = "https://github.com/JohnTheCoolingFan/hash_table" [dependencies.cfg-if] version = "1.0.0" [dependencies.hashbrown] version = "0.14.1" optional = true [dependencies.serde] version = "1.0.194" features = ["derive"] optional = true [features] default = ["serde"] hashbrown-serde = [ "serde", "hashbrown", "hashbrown/serde", ]