update deps & toolchain to stable-1.64

This commit is contained in:
Joel Wejdenstål 2023-07-11 04:44:08 +02:00
parent 8a0149d31b
commit 63465e7c4d
No known key found for this signature in database
GPG Key ID: DF03CEFBB1A915AA
2 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@ name = "dashmap"
version = "5.4.0"
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.64"
license = "MIT"
repository = "https://github.com/xacrimon/dashmap"
homepage = "https://github.com/xacrimon/dashmap"
@ -18,13 +18,13 @@ raw-api = []
inline = ["hashbrown/inline-more"]
[dependencies]
lock_api = "0.4.8"
parking_lot_core = "0.9.3"
hashbrown = { version = "0.12.3", default-features = false }
serde = { version = "1.0.144", optional = true, features = ["derive"] }
lock_api = "0.4.10"
parking_lot_core = "0.9.8"
hashbrown = { version = "0.14.0", default-features = false }
serde = { version = "1.0.171", optional = true, features = ["derive"] }
cfg-if = "1.0.0"
rayon = { version = "1.5.3", optional = true }
once_cell = "1.13.1"
rayon = { version = "1.7.0", optional = true }
once_cell = "1.18.0"
[package.metadata.docs.rs]
features = ["rayon", "raw-api", "serde"]

View File

@ -1,4 +1,4 @@
[toolchain]
channel = "1.59"
components = [ "rustfmt", "clippy" ]
channel = "stable-2022-09-22"
components = ["rustfmt", "clippy"]
profile = "minimal"