Update toml to v0.9 (#14571)

## Summary

This should give us some performance and error message improvements.

---------

Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com>
Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
Ibraheem Ahmed 2025-07-21 09:18:16 -04:00 committed by GitHub
parent b81cce9152
commit ba1319450a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 72 additions and 63 deletions

View file

@ -618,14 +618,13 @@ mod test {
tqdm = { url = invalid url to tqdm-4.66.0-py3-none-any.whl" }
"#};
assert_snapshot!(format_err(input).await, @r###"
error: TOML parse error at line 8, column 16
assert_snapshot!(format_err(input).await, @r#"
error: TOML parse error at line 8, column 28
|
8 | tqdm = { url = invalid url to tqdm-4.66.0-py3-none-any.whl" }
| ^
invalid string
expected `"`, `'`
"###);
| ^
missing comma between key-value pairs, expected `,`
"#);
}
#[tokio::test]