138 lines
2.4 KiB
TOML
138 lines
2.4 KiB
TOML
|
|
# 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 = "flurry"
|
||
|
|
version = "0.5.2"
|
||
|
|
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
|
||
|
|
build = false
|
||
|
|
exclude = ["/jsr166/**"]
|
||
|
|
autolib = false
|
||
|
|
autobins = false
|
||
|
|
autoexamples = false
|
||
|
|
autotests = false
|
||
|
|
autobenches = false
|
||
|
|
description = "Rust port of Java's ConcurrentHashMap"
|
||
|
|
readme = "README.md"
|
||
|
|
keywords = [
|
||
|
|
"hashmap",
|
||
|
|
"concurrent",
|
||
|
|
"map",
|
||
|
|
]
|
||
|
|
categories = [
|
||
|
|
"concurrency",
|
||
|
|
"data-structures",
|
||
|
|
]
|
||
|
|
license = "MIT OR Apache-2.0"
|
||
|
|
repository = "https://github.com/jonhoo/flurry.git"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "flurry"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "basic"
|
||
|
|
path = "tests/basic.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "basic_ref"
|
||
|
|
path = "tests/basic_ref.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "borrow"
|
||
|
|
path = "tests/borrow.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "cuckoo"
|
||
|
|
path = "tests/cuckoo/main.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "hasher"
|
||
|
|
path = "tests/hasher.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "jdk"
|
||
|
|
path = "tests/jdk/main.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "jsr166"
|
||
|
|
path = "tests/jsr166/main.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "regressions"
|
||
|
|
path = "tests/regressions.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "set"
|
||
|
|
path = "tests/set.rs"
|
||
|
|
|
||
|
|
[[bench]]
|
||
|
|
name = "flurry_dashmap"
|
||
|
|
path = "benches/flurry_dashmap.rs"
|
||
|
|
harness = false
|
||
|
|
|
||
|
|
[[bench]]
|
||
|
|
name = "flurry_hashbrown"
|
||
|
|
path = "benches/flurry_hashbrown.rs"
|
||
|
|
harness = false
|
||
|
|
|
||
|
|
[dependencies.ahash]
|
||
|
|
version = "0.8.4"
|
||
|
|
features = ["compile-time-rng"]
|
||
|
|
default-features = false
|
||
|
|
|
||
|
|
[dependencies.num_cpus]
|
||
|
|
version = "1.12.0"
|
||
|
|
|
||
|
|
[dependencies.parking_lot]
|
||
|
|
version = "0.12"
|
||
|
|
|
||
|
|
[dependencies.rayon]
|
||
|
|
version = "1.3"
|
||
|
|
optional = true
|
||
|
|
|
||
|
|
[dependencies.seize]
|
||
|
|
version = "0.3.3"
|
||
|
|
|
||
|
|
[dependencies.serde]
|
||
|
|
version = "1.0.105"
|
||
|
|
optional = true
|
||
|
|
|
||
|
|
[dev-dependencies.criterion]
|
||
|
|
version = "0.5"
|
||
|
|
|
||
|
|
[dev-dependencies.rand]
|
||
|
|
version = "0.8"
|
||
|
|
|
||
|
|
[dev-dependencies.rayon]
|
||
|
|
version = "1.3"
|
||
|
|
|
||
|
|
[dev-dependencies.serde_json]
|
||
|
|
version = "1.0.50"
|
||
|
|
|
||
|
|
[target."cfg(any())".dependencies.regex]
|
||
|
|
version = "1.6.0"
|
||
|
|
optional = true
|
||
|
|
|
||
|
|
[badges.azure-devops]
|
||
|
|
build = "15"
|
||
|
|
pipeline = "flurry"
|
||
|
|
project = "jonhoo/jonhoo"
|
||
|
|
|
||
|
|
[badges.codecov]
|
||
|
|
branch = "master"
|
||
|
|
repository = "jonhoo/flurry"
|
||
|
|
service = "github"
|
||
|
|
|
||
|
|
[badges.maintenance]
|
||
|
|
status = "experimental"
|