Skip to content

Commit f1bc2db

Browse files
committed
Fix github workflows
1 parent 7d3215d commit f1bc2db

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
- uses: dtolnay/rust-toolchain@stable
1920
- name: Build
2021
run: cargo build --verbose
2122
- name: Run tests

Cargo.toml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ likely_stable = "0.1"
2020

2121
[dev-dependencies]
2222
criterion = "0.7"
23-
lru = { path = "./lru-rs" }
24-
const-lru = { path = "./const-lru" }
25-
schnellru = { path = "./schnellru" }
26-
uluru = { path = "./uluru" }
23+
lru = "0.16.1"
24+
const-lru = "1.0.0"
25+
schnellru = "0.2.4"
26+
uluru = "3.1.0"
2727

2828
[[bench]]
2929
name = "benchmarks"
@@ -48,19 +48,3 @@ harness = false
4848
[[bench]]
4949
name = "uluru_bench"
5050
harness = false
51-
52-
[[bench]]
53-
name = "large_n_benchmarks"
54-
harness = false
55-
56-
[[bench]]
57-
name = "tiny_lru_large_bench"
58-
harness = false
59-
60-
[[bench]]
61-
name = "lru_rs_large_bench"
62-
harness = false
63-
64-
[[bench]]
65-
name = "schnellru_large_bench"
66-
harness = false

0 commit comments

Comments
 (0)