diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:25:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:25:56 +0000 |
commit | 018c4950b9406055dec02ef0fb52f132e2bb1e2c (patch) | |
tree | a835ebdf2088ef88fa681f8fad45f09922c1ae9a /vendor/dashmap/Cargo.toml | |
parent | Adding debian version 1.75.0+dfsg1-5. (diff) | |
download | rustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.tar.xz rustc-018c4950b9406055dec02ef0fb52f132e2bb1e2c.zip |
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/dashmap/Cargo.toml')
-rw-r--r-- | vendor/dashmap/Cargo.toml | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/vendor/dashmap/Cargo.toml b/vendor/dashmap/Cargo.toml index ce76bd9a7..cb7480b5a 100644 --- a/vendor/dashmap/Cargo.toml +++ b/vendor/dashmap/Cargo.toml @@ -11,44 +11,63 @@ [package] edition = "2018" -rust-version = "1.59" +rust-version = "1.65" name = "dashmap" -version = "5.4.0" +version = "5.5.3" authors = ["Acrimon <joel.wejdenstal@gmail.com>"] description = "Blazing fast concurrent HashMap for Rust." homepage = "https://github.com/xacrimon/dashmap" documentation = "https://docs.rs/dashmap" readme = "README.md" -keywords = ["atomic", "concurrent", "hashmap"] -categories = ["concurrency", "algorithms", "data-structures"] +keywords = [ + "atomic", + "concurrent", + "hashmap", +] +categories = [ + "concurrency", + "algorithms", + "data-structures", +] license = "MIT" repository = "https://github.com/xacrimon/dashmap" + [package.metadata.docs.rs] -features = ["rayon", "raw-api", "serde"] +features = [ + "rayon", + "raw-api", + "serde", +] + +[dependencies.arbitrary] +version = "1.3.0" +optional = true + [dependencies.cfg-if] version = "1.0.0" [dependencies.hashbrown] -version = "0.12.3" +version = "0.14.0" default-features = false [dependencies.lock_api] -version = "0.4.8" +version = "0.4.10" [dependencies.once_cell] -version = "1.13.1" +version = "1.18.0" [dependencies.parking_lot_core] -version = "0.9.3" +version = "0.9.8" [dependencies.rayon] -version = "1.5.3" +version = "1.7.0" optional = true [dependencies.serde] -version = "1.0.144" +version = "1.0.188" features = ["derive"] optional = true [features] +inline = ["hashbrown/inline-more"] raw-api = [] |