Skip to content

Commit eb5b954

Browse files
committed
chore(deps): update dependencies
1 parent 5b74652 commit eb5b954

File tree

12 files changed

+240
-223
lines changed

12 files changed

+240
-223
lines changed

.github/dependabot.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#package-ecosystem-
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: github-actions
6+
directory: /
7+
schedule:
8+
interval: weekly

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080
uses: actions/checkout@v4
8181

8282
- name: Run typos
83-
uses: crate-ci/typos@v1.16.11
83+
uses: crate-ci/typos@v1.34.0

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ target/
88

99
# MSVC Windows builds of rustc generate these, which store debugging information
1010
*.pdb
11+
12+
# IDE files and folders
13+
.idea/

Cargo.lock

Lines changed: 34 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2021"
77

88
[dependencies]
99
nucleo = { version = "*", path = "../" }
10-
brunch = "0.5.0"
10+
brunch = "0.11.0"
1111
fuzzy-matcher = "0.3.7"
1212
walkdir = "2"

bench/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn checkout_linux_if_needed() {
2828
.stdout(std::process::Stdio::inherit())
2929
.status()
3030
.expect("failed to git clone linux");
31-
println!("did git clone linux...{:?}", output);
31+
println!("did git clone linux...{output:?}");
3232
}
3333
}
3434

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
UCD_VERSION=16.0.0
45
dir=$(pwd)
5-
mkdir /tmp/ucd-15.0.0
6-
cd /tmp/ucd-15.0.0
7-
curl -LO https://www.unicode.org/Public/zipped/15.0.0/UCD.zip
6+
mkdir /tmp/ucd-$UCD_VERSION
7+
cd /tmp/ucd-$UCD_VERSION
8+
curl -LO https://www.unicode.org/Public/zipped/$UCD_VERSION/UCD.zip
89
unzip UCD.zip
910

1011
cd "${dir}"
1112
cargo install ucd-generate
12-
ucd-generate case-folding-simple /tmp/ucd-15.0.0 --chars > src/chars/case_fold.rs
13-
rm -rf /tmp/ucd-15.0.0
13+
ucd-generate case-folding-simple /tmp/ucd-$UCD_VERSION --chars > src/chars/case_fold.rs
14+
rm -rf /tmp/ucd-$UCD_VERSION

0 commit comments

Comments
 (0)