# 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.71" name = "lasso2" version = "0.8.2" authors = [ "Chase Wilson ", "silvanshade ", ] description = """ A multithreaded and single threaded string interner that allows strings to be cached with a minimal memory footprint, associating them with a unique key that can be used to retrieve them at any time. """ documentation = "https://docs.rs/lasso2" readme = "README.md" keywords = [ "interner", "intern", "string", "str", "symbol", ] categories = [ "data-structures", "concurrency", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/silvanshade/lasso2" [package.metadata.docs.rs] features = [ "multi-threaded", "serialize", ] rustc-args = [ "--cfg", "docsrs", ] targets = ["x86_64-unknown-linux-gnu"] [[example]] name = "hello_world" required-features = ["multi-threaded"] [[bench]] name = "single_threaded" harness = false [[bench]] name = "multi_threaded" harness = false required-features = ["multi-threaded"] [[bench]] name = "reader" harness = false [[bench]] name = "resolver" harness = false [dependencies.abomonation] version = "0.7.3" optional = true default-features = false [dependencies.ahash] version = "0.8.0" features = ["no-rng"] optional = true default-features = false [dependencies.dashmap] version = "5.1.0" features = ["raw-api"] optional = true [dependencies.deepsize] version = "0.2.0" optional = true default-features = false [dependencies.hashbrown] version = "0.14.5" features = ["raw"] [dependencies.serde] version = "1.0.123" features = ["alloc"] optional = true default-features = false [dev-dependencies.ahash] version = "0.8.0" default-features = false [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.fxhash] version = "0.2.1" [dev-dependencies.lazy_static] version = "1.4.0" [dev-dependencies.serde_json] version = "1.0.62" [features] ahasher = ["ahash"] default = [] inline-more = [] multi-threaded = ["dashmap"] no-std = ["ahasher"] serialize = [ "serde", "hashbrown/serde", ]