# 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 = "string-interner" version = "0.18.0" authors = ["Robbepop"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Efficient string interner with minimal memory footprint and fast access to the underlying strings. """ documentation = "https://docs.rs/string-interner" readme = "README.md" keywords = [ "interner", "intern", "string", "str", "symbol", ] categories = ["data-structures"] license = "MIT/Apache-2.0" repository = "https://github.com/robbepop/string-interner" [lib] name = "string_interner" path = "src/lib.rs" [[test]] name = "allocator" path = "tests/allocator.rs" [[test]] name = "tests" path = "tests/tests.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [[bench]] name = "setup" path = "benches/setup.rs" [dependencies.hashbrown] version = "0.15.1" features = [ "default-hasher", "raw-entry", ] default-features = false [dependencies.serde] version = "1.0" features = ["alloc"] optional = true default-features = false [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.fxhash] version = "0.2" [dev-dependencies.serde_json] version = "1.0" [features] backends = [] default = [ "std", "serde", "inline-more", "backends", ] inline-more = ["hashbrown/inline-more"] serde = ["dep:serde"] std = ["serde?/std"] test-allocations = [] [badges.appveyor] branch = "master" repository = "Robbepop/string-interner" service = "github" [badges.travis-ci] repository = "Robbepop/string-interner"