Skip to content

Commit 6a06c55

Browse files
committed
misc: update ci and dependencies
1 parent bea95f4 commit 6a06c55

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- beta
2424
- nightly
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
@@ -40,7 +40,7 @@ jobs:
4040
name: Check Format
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
with:
4545
fetch-depth: 0
4646
- run: rustup update stable && rustup default stable
@@ -51,7 +51,7 @@ jobs:
5151
name: Docs
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
with:
5656
fetch-depth: 0
5757
- run: rustup update nightly && rustup default nightly

.github/workflows/release-plz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
- name: Install Rust toolchain

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "general-sam"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
description = "A general suffix automaton implementation in Rust"
@@ -21,12 +21,12 @@ utils = ["rand"]
2121
all = ["trie", "utils"]
2222

2323
[dependencies]
24-
rand = { version = "0.9.1", optional = true }
24+
rand = { version = "0.9.2", optional = true }
2525

2626
[dev-dependencies]
27-
criterion = "0.6.0"
28-
rand = "0.9.1"
29-
tokenizers = "0.21.1"
27+
criterion = "0.7.0"
28+
rand = "0.9.2"
29+
tokenizers = "0.22.0"
3030

3131
[[bench]]
3232
name = "tokenize"

0 commit comments

Comments
 (0)