Skip to content

Commit ba7fb02

Browse files
authored
Merge pull request #1519 from epage/update
chore: Update dependencies
2 parents 5ecfd1b + f05d60b commit ba7fb02

11 files changed

Lines changed: 400 additions & 240 deletions

File tree

Cargo.lock

Lines changed: 371 additions & 211 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.5", path = "../dictgen" }
2121
[dev-dependencies]
2222
codegenrs = "3.0"
2323
dictgen = { version = "^0.5", path = "../dictgen", features = ["codegen"] }
24-
snapbox = "0.6.21"
24+
snapbox = "1.0.1"
2525
typos = { path = "../typos" }
2626

2727
[lints]

crates/dictgen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ map = ["dep:phf", "dep:phf_shared"]
2222
aho-corasick = ["dep:aho-corasick"]
2323

2424
[dependencies]
25-
unicase = "2.8.1"
25+
unicase = "2.9.0"
2626
phf = { version = "0.13", features = ["unicase"], optional = true }
2727
phf_shared = { version = "0.13", optional = true }
2828
phf_codegen = { version = "0.13", optional = true }
29-
aho-corasick = { version = "1.1.3", optional = true }
29+
aho-corasick = { version = "1.1.4", optional = true }
3030

3131
[lints]
3232
workspace = true

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.5", path = "../dictgen" }
2020
codegenrs = "3.0"
2121
regex = "1"
2222
dictgen = { version = "^0.5", path = "../dictgen", features = ["codegen"] }
23-
snapbox = "0.6.21"
23+
snapbox = "1.0.1"
2424
serde_json = "1.0.149"
2525
typos = { path = "../typos" }
2626

crates/typos-cli/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,48 +45,48 @@ typos = { version = "^0.10", path = "../typos" }
4545
varcon-core = { version = "^5.0.6", path = "../varcon-core" }
4646
typos-dict = { version = "^0.13", path = "../typos-dict", optional = true }
4747
typos-vars = { version = "^0.10", path = "../typos-vars", optional = true }
48-
unicase = "2.8.1"
48+
unicase = "2.9.0"
4949
anyhow = "1.0"
50-
clap = { version = "4.5.48", features = ["derive"] }
50+
clap = { version = "4.5.60", features = ["derive"] }
5151
clap-cargo = "0.18.3"
5252
clap-verbosity-flag = "3.0"
5353
ignore = "0.4"
5454
serde = { version = "1.0", features = ["derive"] }
55-
toml = "0.9.7"
55+
toml = "1.0.3"
5656
log = "0.4"
5757
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
5858
bstr = "1.12"
5959
ahash = "0.8"
6060
difflib = "0.4"
6161
proc-exit = "2.0"
62-
human-panic = "2.0.3"
62+
human-panic = "2.0.6"
6363
content_inspector = "0.2.4"
64-
derive_more = { version = "2.0", features = ["from", "display"] }
64+
derive_more = { version = "2.1", features = ["from", "display"] }
6565
derive_setters = "0.1"
6666
itertools = "0.14"
6767
serde_json = "1.0"
6868
kstring = { version = "2.0.2", features = ["serde"] }
6969
typed-arena = "2.0.2"
7070
thread_local = "1.1.9"
71-
globset = "0.4.16"
71+
globset = "0.4.18"
7272
anstyle = "1.0.13"
73-
anstream = "0.6.20"
73+
anstream = "1.0.0"
7474
colorchoice-clap = "1.0.7"
7575
serde_regex = "1.1.0"
76-
regex = "1.11.3"
76+
regex = "1.12.3"
7777
encoding_rs = "0.8.35"
7878
serde-sarif = "0.8.0"
79-
schemars = { version = "1.0.4", features = ["preserve_order","semver1"], optional = true }
80-
annotate-snippets = "0.12.4"
79+
schemars = { version = "1.2.1", features = ["preserve_order","semver1"], optional = true }
80+
annotate-snippets = "0.12.12"
8181
terminal_size = "0.4.3"
8282
supports-unicode = "3.0.0"
8383

8484
[dev-dependencies]
8585
assert_fs = "1.1"
8686
divan = "0.1.21"
8787
maplit = "1.0"
88-
snapbox = { version = "0.6.21", features = ["json"] }
89-
trycmd = "0.15.10"
88+
snapbox = { version = "1.0.1", features = ["json"] }
89+
trycmd = "1.0.1"
9090

9191
[[bench]]
9292
name = "check_file"

crates/typos-dict/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ phf = "0.13.1"
2020
dictgen = { version = "^0.5", path = "../dictgen", features = ["map"] }
2121

2222
[dev-dependencies]
23-
csv = "1.3"
23+
csv = "1.4"
2424
itertools = "0.14"
25-
edit-distance = "2.1"
26-
unicase = "2.8.1"
25+
edit-distance = "2.2"
26+
unicase = "2.9.0"
2727
codegenrs = "3.0"
2828
dictgen = { version = "^0.5", path = "../dictgen", features = ["codegen", "map", "aho-corasick"] }
2929
varcon = { version = "^1.0", path = "../varcon" }
30-
snapbox = "0.6.21"
31-
indexmap = "2.11.4"
30+
snapbox = "1.0.1"
31+
indexmap = "2.13.0"
3232
divan = "0.1.21"
3333
heck = "0.5.0"
3434

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.5", path = "../dictgen", features = ["codegen"] }
29-
snapbox = "0.6.21"
29+
snapbox = "1.0.1"
3030

3131
[lints]
3232
workspace = true

crates/typos/Cargo.toml

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

1818
[dependencies]
19-
winnow = "0.7.13"
20-
unicode-ident = "1.0.22"
19+
winnow = "0.7.14"
20+
unicode-ident = "1.0.24"
2121
serde = { version = "1.0", features = ["derive"] }
2222
simdutf8 = "0.1.5"
2323
itertools = "0.14"
@@ -27,4 +27,4 @@ bstr = "1.12"
2727
workspace = true
2828

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

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.13", optional = true }
23+
winnow = { version = "0.7.14", optional = true }
2424
enumflags2 = { version = "0.7", optional = true }
2525

2626
[lints]
2727
workspace = true
2828

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

crates/varcon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ varcon-core = { version = "^5.0", path = "../varcon-core" }
2626
[dev-dependencies]
2727
codegenrs = "3.0"
2828
varcon-core = { version = "^5.0", path = "../varcon-core", features = ["parser"] }
29-
snapbox = "0.6.21"
29+
snapbox = "1.0.1"
3030

3131
[lints]
3232
workspace = true

0 commit comments

Comments
 (0)