update deps & toolchain to stable-1.64 (#271)

This commit is contained in:
Joel 2023-07-11 04:56:54 +02:00 committed by GitHub
parent 7f9522c528
commit d36311e634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 16 deletions

View File

@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: style
@ -13,7 +13,7 @@ jobs:
run: cargo clippy --all-targets --all-features -- -D warnings
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
strategy:
matrix:
target: [

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

@ -20,7 +20,7 @@ If you have any suggestions or tips do not hesitate to open an issue or a PR.
[![downloads](https://img.shields.io/crates/d/dashmap)](https://crates.io/crates/dashmap)
[![minimum rustc version](https://img.shields.io/badge/rustc-1.59-orange.svg)](https://crates.io/crates/dashmap)
[![minimum rustc version](https://img.shields.io/badge/rustc-1.64-orange.svg)](https://crates.io/crates/dashmap)
## Cargo features

View File

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

View File

@ -118,7 +118,7 @@ pub struct Iter<'a, K, V, S = RandomState, M = DashMap<K, V, S>> {
current: Option<GuardIter<'a, K, V, S>>,
}
impl<'a, 'i, K: Clone + Hash + Eq, V: Clone, S: Clone + BuildHasher> Clone for Iter<'i, K, V, S> {
impl<'i, K: Clone + Hash + Eq, V: Clone, S: Clone + BuildHasher> Clone for Iter<'i, K, V, S> {
fn clone(&self) -> Self {
Iter::new(self.map)
}

View File

@ -1263,7 +1263,7 @@ where
}
}
impl<'a, K: Eq + Hash, V, S: BuildHasher + Clone> IntoIterator for DashMap<K, V, S> {
impl<K: Eq + Hash, V, S: BuildHasher + Clone> IntoIterator for DashMap<K, V, S> {
type Item = (K, V);
type IntoIter = OwningIter<K, V, S>;

View File

@ -173,7 +173,7 @@ where
}
}
impl<'a, K, V, S> DashMap<K, V, S>
impl<K, V, S> DashMap<K, V, S>
where
K: Send + Sync + Eq + Hash,
V: Send + Sync,

View File

@ -385,7 +385,7 @@ impl<'a, K: 'a + Eq + Hash, S: BuildHasher + Clone> DashSet<K, S> {
}
}
impl<'a, K: Eq + Hash, S: BuildHasher + Clone> IntoIterator for DashSet<K, S> {
impl<K: Eq + Hash, S: BuildHasher + Clone> IntoIterator for DashSet<K, S> {
type Item = K;
type IntoIter = OwningIter<K, S>;