Skip to content

Commit 99d9ed7

Browse files
authored
deps: bump a few deps (#2184)
1 parent a27a42f commit 99d9ed7

5 files changed

Lines changed: 50 additions & 91 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ unicode-width = "0.2.2"
9696

9797
# Used for logging. Mostly for dev-level debugging.
9898
fern = { version = "0.7.1", optional = true }
99-
log = { version = "0.4.29", optional = true }
99+
log = { version = "0.4.33", optional = true }
100100

101101
# These are just used for JSON schema generation.
102-
schemars = { version = "1.2.1", optional = true }
103-
strum = { version = "0.27.2", features = ["derive"], optional = true }
102+
schemars = { version = "1.2.2", optional = true }
103+
strum = { version = "0.28.0", features = ["derive"], optional = true }
104104

105105
[target.'cfg(unix)'.dependencies]
106106
libc = "0.2.189"
@@ -125,13 +125,13 @@ windows = { version = "0.62.2", features = [
125125
] }
126126

127127
[target.'cfg(target_os = "freebsd")'.dependencies]
128-
serde_json = { version = "1.0.145" }
128+
serde_json = { version = "1.0.151" }
129129
sysctl = { version = "0.7.1" }
130130

131131
[dev-dependencies]
132-
assert_cmd = "2.1.2"
133-
predicates = "3.1.3"
134-
tempfile = { version = "3.23.0", default-features = false }
132+
assert_cmd = "2.2.2"
133+
predicates = "3.1.4"
134+
tempfile = { version = "3.27.0", default-features = false }
135135

136136
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dev-dependencies]
137137
portable-pty = "0.9.0"

scripts/schema_gen/Cargo.lock

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

scripts/schema_gen/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ publish = false
77
[dependencies]
88
anyhow = "1.0.101"
99
bottom = { path = "../../", features = ["generate_schema"] }
10-
clap = { version = "4.5.57", features = ["derive"] }
10+
clap = { version = "4.6.4", features = ["derive"] }
1111
itertools = "0.15.0"
12-
schemars = "1.2.1"
13-
serde_json = "1.0.149"
14-
strum = { version = "0.27.2", features = ["derive"] }
12+
schemars = "1.2.2"
13+
serde_json = "1.0.151"
14+
strum = { version = "0.28.0", features = ["derive"] }
1515

1616
[lints.rust]
1717
rust_2018_idioms = "deny"

tests/integration/valid_config_tests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ fn test_new_default() {
137137
run_and_kill(&["-C", &(actual_temp_default_path.to_string_lossy())]);
138138

139139
// Re-take control over the temp path to ensure it gets deleted.
140-
let actual_temp_default_path = TempPath::from_path(actual_temp_default_path);
140+
let actual_temp_default_path =
141+
TempPath::try_from_path(actual_temp_default_path).expect("temp path exists");
141142
test_uncommented_default_config(&actual_temp_default_path, "test_new_default");
142143

143144
actual_temp_default_path.close().unwrap();

0 commit comments

Comments
 (0)