Skip to content

Commit 404bb5f

Browse files
Update to mmap-bitvec 0.4.1
This fixes an issue introduced by rust-lang/rust#98112 in 1.70+ that otherwise breaks pointer dereferencing `mmap-bitvec`.
1 parent ebf9820 commit 404bb5f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: CI
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77

88
jobs:
99
tests:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@master
13+
uses: actions/checkout@main
1414

1515
- uses: actions-rs/toolchain@v1
1616
with:
1717
profile: minimal
18-
toolchain: 1.60.0
18+
toolchain: stable
1919
override: true
2020

2121
- name: version info
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@master
31+
uses: actions/checkout@main
3232

3333
- uses: actions-rs/toolchain@v1
3434
with:
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@master
49+
uses: actions/checkout@main
5050

5151
- uses: actions-rs/toolchain@v1
5252
with:
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- name: Checkout
66-
uses: actions/checkout@master
66+
uses: actions/checkout@main
6767

6868
- uses: actions-rs/toolchain@v1
6969
with:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exclude = [
1818

1919
[dependencies]
2020
bincode = "1"
21-
mmap-bitvec = "0.4.0"
21+
mmap-bitvec = "0.4.1"
2222
murmurhash3 = "0.0.5"
2323
serde = { version = "1.0", features = ["derive"] }
2424
once_cell = "1.3.1"

0 commit comments

Comments
 (0)