# 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 = "papaya" version = "0.1.4" authors = ["Ibraheem Ahmed "] build = false exclude = ["assets/*"] autobins = false autoexamples = false autotests = false autobenches = false description = "A fast and ergonomic concurrent hash-table for read-heavy workloads." readme = "README.md" keywords = [ "concurrent", "hashmap", "atomic", "lock-free", ] license = "MIT" repository = "https://github.com/ibraheemdev/papaya" [profile.test] debug-assertions = true inherits = "release" [lib] name = "papaya" path = "src/lib.rs" [[test]] name = "basic" path = "tests/basic.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "cuckoo" path = "tests/cuckoo.rs" [[test]] name = "stress" path = "tests/stress.rs" [[bench]] name = "latency" path = "benches/latency.rs" harness = false [[bench]] name = "single_thread" path = "benches/single_thread.rs" harness = false [dependencies.atomic-wait] version = "1.1.0" [dependencies.seize] version = "0.4.4" [dependencies.serde] version = "1.0.204" optional = true [dev-dependencies.base64] version = "0.22.1" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.dashmap] version = "5.5.3" [dev-dependencies.hdrhistogram] version = "7.5.4" [dev-dependencies.num_cpus] version = "1.16.0" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.serde_json] version = "1.0.120" [dev-dependencies.tokio] version = "1.38.0" features = [ "fs", "rt", ] [features] default = [] serde = ["dep:serde"] [lints.rust.unexpected_cfgs] level = "warn" priority = 0 check-cfg = [ "cfg(papaya_stress)", "cfg(papaya_asan)", ]