Skip to content

Commit 1717ca1

Browse files
committed
chore: Update dependencies
1 parent 7e5797c commit 1717ca1

File tree

12 files changed

+421
-481
lines changed

12 files changed

+421
-481
lines changed

Cargo.lock

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

crates/codespell-dict/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dictgen = { version = "^0.4", path = "../dictgen" }
2121
[dev-dependencies]
2222
codegenrs = "3.0"
2323
dictgen = { version = "^0.4", path = "../dictgen", features = ["codegen"] }
24-
snapbox = "0.6.5"
24+
snapbox = "0.6.21"
2525
typos = { path = "../typos" }
2626

2727
[lints]

crates/dictgen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ aho-corasick = ["dep:aho-corasick"]
2323

2424
[dependencies]
2525
unicase = "2.8.1"
26-
phf = { version = "0.12", features = ["unicase"], optional = true }
27-
phf_shared = { version = "0.12", optional = true }
28-
phf_codegen = { version = "0.12", optional = true }
26+
phf = { version = "0.13", features = ["unicase"], optional = true }
27+
phf_shared = { version = "0.13", optional = true }
28+
phf_codegen = { version = "0.13", optional = true }
2929
aho-corasick = { version = "1.1.3", optional = true }
3030

3131
[lints]

crates/misspell-dict/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dictgen = { version = "^0.4", path = "../dictgen" }
2020
codegenrs = "3.0"
2121
regex = "1"
2222
dictgen = { version = "^0.4", path = "../dictgen", features = ["codegen"] }
23-
snapbox = "0.6.5"
23+
snapbox = "0.6.21"
2424

2525
[lints]
2626
workspace = true

crates/typos-cli/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ typos-dict = { version = "^0.13", path = "../typos-dict", optional = true }
4747
typos-vars = { version = "^0.10", path = "../typos-vars", optional = true }
4848
unicase = "2.8.1"
4949
anyhow = "1.0"
50-
clap = { version = "4.5.4", features = ["derive"] }
50+
clap = { version = "4.5.48", features = ["derive"] }
5151
clap-verbosity-flag = "3.0"
5252
ignore = "0.4"
5353
serde = { version = "1.0", features = ["derive"] }
54-
toml = "0.9.1"
54+
toml = "0.9.7"
5555
log = "0.4"
5656
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
57-
bstr = "1.9"
57+
bstr = "1.12"
5858
ahash = "0.8"
5959
difflib = "0.4"
6060
proc-exit = "2.0"
@@ -64,27 +64,27 @@ derive_more = { version = "2.0", features = ["from", "display"] }
6464
derive_setters = "0.1"
6565
itertools = "0.14"
6666
serde_json = "1.0"
67-
kstring = { version = "2.0.0", features = ["serde"] }
67+
kstring = { version = "2.0.2", features = ["serde"] }
6868
typed-arena = "2.0.2"
69-
thread_local = "1.1.8"
70-
globset = "0.4.14"
71-
anstyle = "1.0.6"
72-
anstream = "0.6.13"
73-
colorchoice-clap = "1.0.3"
69+
thread_local = "1.1.9"
70+
globset = "0.4.16"
71+
anstyle = "1.0.13"
72+
anstream = "0.6.20"
73+
colorchoice-clap = "1.0.7"
7474
serde_regex = "1.1.0"
75-
regex = "1.10.4"
76-
encoding_rs = "0.8.34"
77-
serde-sarif = "0.7.0"
78-
schemars = { version = "0.9.0", features = ["preserve_order","semver1"], optional = true }
79-
annotate-snippets = "0.12.2"
75+
regex = "1.11.3"
76+
encoding_rs = "0.8.35"
77+
serde-sarif = "0.8.0"
78+
schemars = { version = "1.0.4", features = ["preserve_order","semver1"], optional = true }
79+
annotate-snippets = "0.12.4"
8080
terminal_size = "0.4.3"
8181
supports-unicode = "3.0.0"
8282

8383
[dev-dependencies]
8484
assert_fs = "1.1"
85-
divan = "0.1.14"
85+
divan = "0.1.21"
8686
maplit = "1.0"
87-
snapbox = "0.6.5"
87+
snapbox = "0.6.21"
8888
trycmd = "0.15.10"
8989

9090
[[bench]]

crates/typos-cli/src/bin/typos-cli/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ fn typo_to_sarif_result(
369369
fix: Option<Fix>,
370370
) -> Result<sarif::Result, Box<dyn std::error::Error>> {
371371
let mut result = sarif::Result::builder()
372-
.level(sarif::ResultLevel::Error.to_string())
372+
.level(sarif::ResultLevel::Error)
373373
.message(sarif::Message::builder().markdown(message).build())
374374
.locations(vec![location])
375375
.build();

crates/typos-dict/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ all-features = true
1616
rustdoc-args = ["--generate-link-to-definition"]
1717

1818
[dependencies]
19-
phf = "0.12.0"
19+
phf = "0.13.1"
2020
dictgen = { version = "^0.4", path = "../dictgen", features = ["map"] }
2121

2222
[dev-dependencies]
@@ -27,9 +27,9 @@ unicase = "2.8.1"
2727
codegenrs = "3.0"
2828
dictgen = { version = "^0.4", path = "../dictgen", features = ["codegen", "map", "aho-corasick"] }
2929
varcon = { version = "^1.0", path = "../varcon" }
30-
snapbox = "0.6.5"
31-
indexmap = "2.2.6"
32-
divan = "0.1.16"
30+
snapbox = "0.6.21"
31+
indexmap = "2.11.4"
32+
divan = "0.1.21"
3333
heck = "0.5.0"
3434

3535
[lints]

crates/typos-vars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ typos = { version = "^0.10", path = "../typos" }
2626
codegenrs = "3.0"
2727
itertools = "0.14"
2828
dictgen = { version = "^0.4", path = "../dictgen", features = ["codegen"] }
29-
snapbox = "0.6.5"
29+
snapbox = "0.6.21"
3030

3131
[lints]
3232
workspace = true

crates/typos/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ all-features = true
1616
rustdoc-args = ["--generate-link-to-definition"]
1717

1818
[dependencies]
19-
winnow = "0.7.0"
20-
unicode-xid = "0.2.4"
19+
winnow = "0.7.13"
20+
unicode-xid = "0.2.6"
2121
serde = { version = "1.0", features = ["derive"] }
22-
simdutf8 = "0.1.4"
22+
simdutf8 = "0.1.5"
2323
itertools = "0.14"
24-
bstr = "1.9"
24+
bstr = "1.12"
2525

2626
[lints]
2727
workspace = true
2828

2929
[dev-dependencies]
30-
snapbox = "0.6.11"
30+
snapbox = "0.6.21"

crates/varcon-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ parser = ["dep:winnow"]
2020
flags = ["dep:enumflags2"]
2121

2222
[dependencies]
23-
winnow = { version = "0.7.0", optional = true }
23+
winnow = { version = "0.7.13", optional = true }
2424
enumflags2 = { version = "0.7", optional = true }
2525

2626
[lints]
2727
workspace = true
2828

2929
[dev-dependencies]
30-
snapbox = "0.6.17"
30+
snapbox = "0.6.21"

0 commit comments

Comments
 (0)