Skip to content

Commit b8f17e9

Browse files
chore(deps): Update toml-test (#1077)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [toml-test-data](https://redirect.github.com/epage/toml-test-rs) | dev-dependencies | minor | `2.3.3` -> `2.4.0` | | [toml-test-harness](https://redirect.github.com/epage/toml-test-rs) | dev-dependencies | minor | `1.3.3` -> `1.4.0` | --- ### Release Notes <details> <summary>epage/toml-test-rs (toml-test-data)</summary> ### [`v2.4.0`](https://redirect.github.com/epage/toml-test-rs/compare/toml-test-data-v2.3.3...toml-test-data-v2.4.0) [Compare Source](https://redirect.github.com/epage/toml-test-rs/compare/toml-test-data-v2.3.3...toml-test-data-v2.4.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Every minute ( * * * * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/toml-rs/toml). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent cac838f commit b8f17e9

File tree

260 files changed

+466
-1069
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+466
-1069
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 21
1+
TOML parse error at line 1, column 22
22
|
3-
1 | double-comma-1 = [1,,2]
4-
| ^
3+
1 | double-comma-01 = [1,,2]
4+
| ^
55
extra comma in array, expected value
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 23
1+
TOML parse error at line 1, column 24
22
|
3-
1 | double-comma-2 = [1,2,,]
4-
| ^
3+
1 | double-comma-02 = [1,2,,]
4+
| ^
55
extra comma in array, expected value

crates/toml/tests/snapshots/invalid/array/double-comma-1.stderr

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 24
1+
TOML parse error at line 1, column 25
22
|
3-
1 | no-close-1 = [ 1, 2, 3
4-
| ^
3+
1 | no-close-01 = [ 1, 2, 3
4+
| ^
55
unclosed array, expected `]`
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 18
1+
TOML parse error at line 1, column 19
22
|
3-
1 | no-close-2 = [1,
4-
| ^
3+
1 | no-close-02 = [1,
4+
| ^
55
unclosed array, expected `]`
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 21
1+
TOML parse error at line 1, column 22
22
|
3-
1 | no-close-3 = [42 #]
4-
| ^
3+
1 | no-close-03 = [42 #]
4+
| ^
55
unclosed array, expected `]`
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
TOML parse error at line 1, column 25
1+
TOML parse error at line 1, column 26
22
|
3-
1 | no-close-4 = [{ key = 42
4-
| ^
3+
1 | no-close-04 = [{ key = 42
4+
| ^
55
newlines are unsupported in inline tables, expected nothing
66

77
---
8-
TOML parse error at line 1, column 26
8+
TOML parse error at line 1, column 27
99
|
10-
1 | no-close-4 = [{ key = 42
11-
| ^
10+
1 | no-close-04 = [{ key = 42
11+
| ^
1212
unclosed inline table, expected `}`
1313

1414
---
15-
TOML parse error at line 1, column 25
15+
TOML parse error at line 1, column 26
1616
|
17-
1 | no-close-4 = [{ key = 42
18-
| ^
17+
1 | no-close-04 = [{ key = 42
18+
| ^
1919
unclosed array, expected `]`
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TOML parse error at line 1, column 27
1+
TOML parse error at line 1, column 28
22
|
3-
1 | no-close-5 = [{ key = 42}
4-
| ^
3+
1 | no-close-05 = [{ key = 42}
4+
| ^
55
unclosed array, expected `]`
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
TOML parse error at line 1, column 26
1+
TOML parse error at line 1, column 27
22
|
3-
1 | no-close-6 = [{ key = 42 #}]
4-
| ^^^
3+
1 | no-close-06 = [{ key = 42 #}]
4+
| ^^^
55
comments are unsupported in inline tables, expected nothing
66

77
---
8-
TOML parse error at line 1, column 30
8+
TOML parse error at line 1, column 31
99
|
10-
1 | no-close-6 = [{ key = 42 #}]
11-
| ^
10+
1 | no-close-06 = [{ key = 42 #}]
11+
| ^
1212
unclosed inline table, expected `}`
1313

1414
---
15-
TOML parse error at line 1, column 25
15+
TOML parse error at line 1, column 26
1616
|
17-
1 | no-close-6 = [{ key = 42 #}]
18-
| ^
17+
1 | no-close-06 = [{ key = 42 #}]
18+
| ^
1919
unclosed array, expected `]`

0 commit comments

Comments
 (0)