-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[move] Update versions of toml and toml_edit crates
- Loading branch information
Showing
13 changed files
with
92 additions
and
63 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
...crates/move/crates/move-package/tests/test_sources/conflicting_dependencies/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
Unable to parse Move package manifest: duplicate key: `OtherDep` for key `dependencies` at line 4 column 1 | ||
Unable to parse Move package manifest: TOML parse error at line 6, column 1 | ||
| | ||
6 | OtherDep = { local = "./deps_only/different_dep" } | ||
| ^ | ||
duplicate key `OtherDep` in table `dependencies` | ||
|
7 changes: 6 additions & 1 deletion
7
external-crates/move/crates/move-package/tests/test_sources/external_broken/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
Failed to resolve dependencies for package 'Root': Parsing response from '../resolvers/broken.sh' for dependency 'A' of package 'Root': Deserializing packages: expected an equals, found an identifier at line 1 column 8 | ||
Failed to resolve dependencies for package 'Root': Parsing response from '../resolvers/broken.sh' for dependency 'A' of package 'Root': Deserializing packages: TOML parse error at line 1, column 8 | ||
| | ||
1 | Broken response (not a lock file) from resolver for dependencies of A. | ||
| ^ | ||
expected `.`, `=` | ||
|
4 changes: 1 addition & 3 deletions
4
...e/crates/move-package/tests/test_sources/external_resolver_invalid_resolver/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
Error parsing '[dependencies]' section of manifest: Malformed external resolver declaration for dependency r.baz = "quz" | ||
foo = "bar" | ||
|
||
Error parsing '[dependencies]' section of manifest: Malformed external resolver declaration for dependency r.{ baz = "quz", foo = "bar" } |
4 changes: 1 addition & 3 deletions
4
...ackage/tests/test_sources/external_resolver_invalid_resolver_invalid_target/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
Error parsing '[dependencies]' section of manifest: Malformed external resolver declaration for dependency r.[foo] | ||
bar = "baz" | ||
|
||
Error parsing '[dependencies]' section of manifest: Malformed external resolver declaration for dependency r.{ foo = { bar = "baz" } } |
7 changes: 6 additions & 1 deletion
7
...move/crates/move-package/tests/test_sources/parsing_duplicate_address_names/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
Unable to parse Move package manifest: duplicate key: `a` for key `addresses` at line 4 column 1 | ||
Unable to parse Move package manifest: TOML parse error at line 6, column 1 | ||
| | ||
6 | a = "0x2" | ||
| ^ | ||
duplicate key `a` in table `addresses` | ||
|
8 changes: 7 additions & 1 deletion
8
...ve/crates/move-package/tests/test_sources/parsing_duplicate_top_level_field/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
Unable to parse Move package manifest: redefinition of table `package` for key `package` at line 4 column 1 | ||
Unable to parse Move package manifest: TOML parse error at line 4, column 1 | ||
| | ||
4 | [package] | ||
| ^ | ||
invalid table header | ||
duplicate key `package` in document root | ||
|
3 changes: 1 addition & 2 deletions
3
...move/crates/move-package/tests/test_sources/parsing_non_string_address_name/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
Error parsing '[addresses]' section of manifest: Invalid address name b = "0x1" | ||
encountered. Expected a string but found a table | ||
Error parsing '[addresses]' section of manifest: Invalid address name { b = "0x1" } encountered. Expected a string but found a table |
4 changes: 1 addition & 3 deletions
4
...-package/tests/test_sources/parsing_too_many_entries_renaming_instantiation/Move.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
Error parsing '[dependencies]' section of manifest: Malformed dependency substitution B = "0x1" | ||
R = "0x2" | ||
. Expected a string, but encountered a table | ||
Error parsing '[dependencies]' section of manifest: Malformed dependency substitution { B = "0x1", R = "0x2" }. Expected a string, but encountered a table |