Skip to content

Commit

Permalink
Auto merge of rust-lang#8772 - ehuss:update-toml, r=alexcrichton
Browse files Browse the repository at this point in the history
Update toml dependency
  • Loading branch information
bors authored and ehuss committed Oct 14, 2020
1 parent 4d92bf5 commit bb66e0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ strip-ansi-escapes = "0.1.0"
tar = { version = "0.4.26", default-features = false }
tempfile = "3.0"
termcolor = "1.1"
toml = "0.5.3"
toml = "0.5.7"
unicode-xid = "0.2.0"
url = "2.0"
walkdir = "2.2"
Expand Down
4 changes: 2 additions & 2 deletions tests/testsuite/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Caused by:
could not parse input as TOML
Caused by:
invalid number at line 3 column 23
invalid TOML value, did you mean to use a quoted string? at line 3 column 23
",
)
.run();
Expand All @@ -216,7 +216,7 @@ Caused by:
could not parse input as TOML
Caused by:
invalid number at line 1 column 5
invalid TOML value, did you mean to use a quoted string? at line 1 column 5
",
)
.run();
Expand Down
2 changes: 1 addition & 1 deletion tests/testsuite/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ expected a list, but found a integer for `l3` in [..]/.cargo/config",
assert_error(
config.get::<L>("bad-env").unwrap_err(),
"error in environment variable `CARGO_BAD_ENV`: \
could not parse TOML list: invalid number at line 1 column 8",
could not parse TOML list: invalid TOML value, did you mean to use a quoted string? at line 1 column 8",
);

// Try some other sequence-like types.
Expand Down

0 comments on commit bb66e0f

Please sign in to comment.