Skip to content

Commit a47a8a9

Browse files
torokati44evilpie
authored andcommitted
chore: Update toml to 0.9.7, toml_edit to 0.23.6
1 parent e549d9f commit a47a8a9

File tree

5 files changed

+39
-28
lines changed

5 files changed

+39
-28
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ rfd = { version = "0.15.4", default-features = false, features = ["tokio", "xdg-
8484
memmap2 = "0.9.8"
8585
libtest-mimic = "0.8.1"
8686
regex = "1.11.3"
87-
toml = "0.8.23"
87+
toml = "0.9.7"
8888
vfs = "0.12.2"
8989
smallvec = { version = "1.15.1", features = ["const_new", "union"] }
9090
serde_json = "1.0.145"

desktop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ wgpu = { workspace = true }
4242
futures = { workspace = true }
4343
chrono = { workspace = true }
4444
fluent-templates = { workspace = true }
45-
toml_edit = { version = "0.22.27", features = ["parse"] }
45+
toml_edit = { version = "0.23.6", features = ["parse"] }
4646
gilrs = "0.11"
4747
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "fs"] }
4848

desktop/src/preferences/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ mod tests {
109109

110110
assert_eq!(&SavedGlobalPreferences::default(), result.values());
111111
assert_eq!(result.warnings.len(), 1);
112-
assert_eq!("Invalid TOML: TOML parse error at line 1, column 1\n |\n1 | ~~INVALID~~\n | ^\ninvalid key\n", result.warnings[0].to_string());
112+
assert_eq!("Invalid TOML: TOML parse error at line 1, column 12\n |\n1 | ~~INVALID~~\n | ^\nkey with no value, expected `=`\n", result.warnings[0].to_string());
113113
}
114114

115115
#[test]

frontend-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ workspace = true
1414
cpal = ["dep:cpal", "dep:bytemuck"]
1515

1616
[dependencies]
17-
toml_edit = { version = "0.22.27", features = ["parse"] }
17+
toml_edit = { version = "0.23.6", features = ["parse"] }
1818
url = { workspace = true }
1919
tracing = { workspace = true }
2020
thiserror = { workspace = true }

0 commit comments

Comments
 (0)