Skip to content

Commit 62603b5

Browse files
committed
[meta] upgrade toml and toml_edit
1 parent f702b69 commit 62603b5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Cargo.lock

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

nextest-runner/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ tokio = { version = "1.36.0", features = [
7373
"sync",
7474
"time",
7575
] }
76-
toml = "0.8.10"
77-
toml_edit = { version = "0.22.6", features = ["serde"] }
76+
toml = "0.8.11"
77+
toml_edit = { version = "0.22.7", features = ["serde"] }
7878
xxhash-rust = { version = "0.8.10", features = ["xxh64"] }
7979
zstd = { version = "0.13.0", features = ["zstdmt"] }
8080

nextest-runner/src/cargo_config/discovery.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ fn parse_cli_config(config_str: &str) -> Result<CargoConfig, CargoConfigError> {
189189
// We only want to allow "dotted key" (see https://toml.io/en/v1.0.0#keys)
190190
// expressions followed by a value that's not an "inline table"
191191
// (https://toml.io/en/v1.0.0#inline-table). Easiest way to check for that is to
192-
// parse the value as a toml_edit::Document, and check that the (single)
192+
// parse the value as a toml_edit::DocumentMut, and check that the (single)
193193
// inner-most table is set via dotted keys.
194-
let doc: toml_edit::Document =
194+
let doc: toml_edit::DocumentMut =
195195
config_str
196196
.parse()
197197
.map_err(|error| CargoConfigError::CliConfigParseError {

workspace-hack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ xxhash-rust = { version = "0.8.10", default-features = false, features = ["xxh3"
4141
cc = { version = "1.0.83", default-features = false, features = ["parallel"] }
4242
proc-macro2 = { version = "1.0.78" }
4343
quote = { version = "1.0.35" }
44-
syn = { version = "2.0.48", features = ["extra-traits", "full", "visit", "visit-mut"] }
44+
syn = { version = "2.0.52", features = ["extra-traits", "full", "visit", "visit-mut"] }
4545

4646
[target.x86_64-unknown-linux-gnu.dependencies]
4747
futures-core = { version = "0.3.30" }

0 commit comments

Comments
 (0)