Skip to content

Commit aaab1cf

Browse files
authored
chore: update dependencies (reubeno#977)
1 parent 5654afd commit aaab1cf

8 files changed

Lines changed: 41 additions & 41 deletions

File tree

Cargo.lock

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

brush-builtins/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ brush-core = { version = "^0.4.0", path = "../brush-core" }
132132
brush-parser = { version = "^0.3.0", path = "../brush-parser" }
133133
cfg-if = "1.0.4"
134134
chrono = "0.4.43"
135-
clap = { version = "4.5.54", features = ["derive", "wrap_help"] }
135+
clap = { version = "4.5.56", features = ["derive", "wrap_help"] }
136136
fancy-regex = "0.17.0"
137137
futures = "0.3.31"
138138
itertools = "0.14.0"
@@ -165,7 +165,7 @@ nix = { version = "0.31.1", features = [
165165
"term",
166166
"user",
167167
] }
168-
rlimit = "0.10.2"
168+
rlimit = "0.11.0"
169169

170170
[target.'cfg(target_os = "linux")'.dependencies]
171171
procfs = "0.18.0"

brush-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bon = "3.8.2"
2828
cached = "0.56.0"
2929
cfg-if = "1.0.4"
3030
chrono = "0.4.43"
31-
clap = { version = "4.5.54", features = ["derive", "wrap_help"] }
31+
clap = { version = "4.5.56", features = ["derive", "wrap_help"] }
3232
color-print = "0.3.7"
3333
fancy-regex = "0.17.0"
3434
futures = "0.3.31"
@@ -60,7 +60,7 @@ tokio = { version = "1.49.0", features = [
6060
] }
6161

6262
[target.'cfg(windows)'.dependencies]
63-
whoami = "2.0.2"
63+
whoami = "2.1.0"
6464

6565
[target.'cfg(unix)'.dependencies]
6666
command-fds = "0.3.2"

brush-experimental-builtins/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ workspace = true
2222

2323
[dependencies]
2424
brush-core = { version = "^0.4.0", path = "../brush-core" }
25-
clap = { version = "4.5.54", features = ["derive", "wrap_help"] }
25+
clap = { version = "4.5.56", features = ["derive", "wrap_help"] }
2626
serde_json = { version = "1.0.149", optional = true }

brush-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ arbitrary = { version = "1.4.2", optional = true, features = ["derive"] }
2828
bon = "3.8.2"
2929
cached = "0.56.0"
3030
indenter = "0.3.4"
31-
insta = { version = "1.46.1", features = ["redactions"] }
31+
insta = { version = "1.46.2", features = ["redactions"] }
3232
miette = { version = "7.6.0", optional = true, default-features = false, features = [
3333
"derive",
3434
] }
@@ -41,7 +41,7 @@ utf8-chars = "3.0.6"
4141
[dev-dependencies]
4242
anyhow = "1.0.100"
4343
criterion = { version = "0.8.1", features = ["html_reports"] }
44-
insta = { version = "1.46.1", features = ["glob", "ron", "yaml"] }
44+
insta = { version = "1.46.2", features = ["glob", "ron", "yaml"] }
4545
miette = { version = "7.6.0", features = ["fancy"] }
4646
pretty_assertions = { version = "1.4.1", features = ["unstable"] }
4747
serde = { version = "1.0.228", features = ["derive", "rc"] }

brush-shell/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ workspace = true
6666
brush-core = { version = "^0.4.0", path = "../brush-core" }
6767
brush-builtins = { version = "^0.1.0", path = "../brush-builtins" }
6868
brush-experimental-builtins = { version = "^0.1.0", path = "../brush-experimental-builtins", optional = true }
69-
clap = { version = "4.5.54", features = ["derive", "env"] }
69+
clap = { version = "4.5.56", features = ["derive", "env"] }
7070
color-print = "0.3.7"
7171
etcetera = "0.11.0"
72-
schemars = { version = "1.2.0", optional = true }
72+
schemars = { version = "1.2.1", optional = true }
7373
serde = { version = "1.0", features = ["derive"] }
7474
toml = "0.9.11"
7575
const_format = "0.2.35"

brush-test-harness/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ insta = ["dep:insta"]
2626
anyhow = "1.0.100"
2727
assert_cmd = "2.1.2"
2828
assert_fs = "1.1.3"
29-
clap = { version = "4.5.54", features = ["derive", "env"] }
29+
clap = { version = "4.5.56", features = ["derive", "env"] }
3030
colored = "3.1.1"
3131
descape = "3.0.0"
3232
diff = "0.1.13"
3333
glob = "0.3.3"
3434
indent = "0.1.1"
35-
insta = { version = "1.46.1", features = ["yaml"], optional = true }
35+
insta = { version = "1.46.2", features = ["yaml"], optional = true }
3636
junit-report = "0.8.3"
3737
os-release = "0.1.0"
3838
regex = "1.12.2"

xtask/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ anyhow = "1.0.100"
2424
brush-shell = { version = "^0.3.0", path = "../brush-shell", features = [
2525
"schema",
2626
] }
27-
clap = { version = "4.5.54", features = ["derive"] }
27+
clap = { version = "4.5.56", features = ["derive"] }
2828
clap_complete = "4.5.65"
2929
clap_mangen = "0.2.31"
3030
clap-markdown = "0.1.5"
31-
schemars = "1.2.0"
31+
schemars = "1.2.1"
3232
serde_json = "1.0.149"
3333
xshell = "0.2.7"
3434
tempfile = "3.24.0"

0 commit comments

Comments
 (0)