diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84845a14..035462bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: run: cargo fmt -- --check - name: clippy run: cargo clippy --all-targets --all-features -- -D warnings - + test: runs-on: ubuntu-18.04 strategy: diff --git a/Cargo.toml b/Cargo.toml index 32ba15d3..26067547 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ raw-api = [] [dependencies] lock_api = "0.4.8" parking_lot_core = "0.9.3" -hashbrown = { version = "0.12.3", default-features = false } +hashbrown = { version = "0.13.2", default-features = false } serde = { version = "1.0.144", optional = true, features = ["derive"] } cfg-if = "1.0.0" rayon = { version = "1.5.3", optional = true } diff --git a/rust-toolchain b/rust-toolchain index 62d03d54..5112ae2e 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,4 +1,4 @@ [toolchain] -channel = "1.59" +channel = "1.61" components = [ "rustfmt", "clippy" ] profile = "minimal"