Skip to content

Commit 4ceec1c

Browse files
committed
chore: Update dependencies
1 parent 08712d9 commit 4ceec1c

File tree

12 files changed

+271
-246
lines changed

12 files changed

+271
-246
lines changed

Cargo.lock

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

crates/anstream/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ anstyle = { version = "1.0.0", path = "../anstyle" }
3535
anstyle-parse = { version = "0.2.0", path = "../anstyle-parse" }
3636
colorchoice = { version = "1.0.0", path = "../colorchoice" }
3737
anstyle-query = { version = "1.0.0", path = "../anstyle-query", optional = true }
38-
utf8parse = "0.2.1"
38+
utf8parse = "0.2.2"
3939
is_terminal_polyfill = "1.48"
4040

4141
[target.'cfg(windows)'.dependencies]
4242
anstyle-wincon = { version = "3.0.5", path = "../anstyle-wincon", optional = true }
4343

4444
[dev-dependencies]
45-
divan = "0.1.11"
46-
lexopt = "0.3.0"
45+
divan = "0.1.16"
46+
lexopt = "0.3.1"
4747
owo-colors = "4.0.0"
48-
proptest = "1.4.0"
49-
strip-ansi-escapes = "0.2.0"
48+
proptest = "1.7.0"
49+
strip-ansi-escapes = "0.2.1"
5050

5151
[[example]]
5252
name = "dump-stream"

crates/anstyle-parse/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ pre-release-replacements = [
2424
]
2525

2626
[dependencies]
27-
arrayvec = { version = "0.7.2", default-features = false, optional = true }
28-
utf8parse = { version = "0.2.1", optional = true }
27+
arrayvec = { version = "0.7.6", default-features = false, optional = true }
28+
utf8parse = { version = "0.2.2", optional = true }
2929

3030
[features]
3131
default = ["utf8"]
3232
core = ["dep:arrayvec"]
3333
utf8 = ["dep:utf8parse"]
3434

3535
[dev-dependencies]
36-
codegenrs = { version = "3.0.1", default-features = false }
37-
divan = "0.1.14"
38-
proptest = "1.4.0"
39-
snapbox = "0.6.5"
36+
codegenrs = { version = "3.0.0", default-features = false }
37+
divan = "0.1.16"
38+
proptest = "1.7.0"
39+
snapbox = "0.6.21"
4040
vte_generate_state_changes = { version = "0.1.1" }
4141

4242
[[bench]]

crates/anstyle-query/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pre-release-replacements = [
2424
]
2525

2626
[target.'cfg(windows)'.dependencies]
27-
windows-sys = { version = "0.60.0", features = ["Win32_System_Console", "Win32_Foundation"] }
27+
windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] }
2828

2929
[lints]
3030
workspace = true

crates/anstyle-roff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ roff = "0.2.1"
3030
cansi = "2.2.1"
3131

3232
[dev-dependencies]
33-
snapbox = "0.6.5"
33+
snapbox = "0.6.21"
3434

3535
[lints]
3636
workspace = true

crates/anstyle-svg/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ anstyle = { version = "1.0.0", path = "../anstyle" }
2828
anstyle-parse = { version = "0.2.6", path = "../anstyle-parse" }
2929
anstyle-lossy = { version = "1.0.0", path = "../anstyle-lossy" }
3030
html-escape = "0.2.13"
31-
unicode-width = "0.2.0"
31+
unicode-width = "0.2.1"
3232

3333
[dev-dependencies]
34-
proptest = "1.5.0"
35-
snapbox = "0.6.5"
34+
proptest = "1.7.0"
35+
snapbox = "0.6.21"
3636

3737
[lints]
3838
workspace = true

crates/anstyle-syntect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pre-release-replacements = [
2525

2626
[dependencies]
2727
anstyle = { version = "1.0.0", path = "../anstyle" }
28-
syntect = { version = "5.0.0", default-features = false }
28+
syntect = { version = "5.2.0", default-features = false }
2929

3030
[target.'cfg(any())'.dependencies]
3131
thiserror = "1.0.2" # HACK: bad minimal dep in syntect

crates/anstyle-termcolor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pre-release-replacements = [
2525

2626
[dependencies]
2727
anstyle = { version = "1.0.0", path = "../anstyle" }
28-
termcolor = "1.1.3"
28+
termcolor = "1.4.1"
2929

3030
[lints]
3131
workspace = true

crates/anstyle-wincon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ pre-release-replacements = [
2828
anstyle = { version = "1.0.0", path = "../anstyle" }
2929

3030
[dev-dependencies]
31-
lexopt = "0.3.0"
31+
lexopt = "0.3.1"
3232

3333
[target.'cfg(windows)'.dependencies]
34-
windows-sys = { version = "0.60.0", features = ["Win32_System_Console", "Win32_Foundation"] }
34+
windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] }
3535
once_cell_polyfill = "1.56.0"
3636

3737
[lints]

crates/anstyle-yansi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pre-release-replacements = [
2525

2626
[dependencies]
2727
anstyle = { version = "1.0.0", path = "../anstyle" }
28-
yansi = "1.0.0"
28+
yansi = "1.0.1"
2929

3030
[lints]
3131
workspace = true

0 commit comments

Comments
 (0)