Bump toml 0.5.3

This commit is contained in:
Eric Huss 2019-08-13 10:37:40 -07:00
parent 6aca041592
commit b41c209af3
6 changed files with 10 additions and 10 deletions

View file

@ -59,7 +59,7 @@ strip-ansi-escapes = "0.1.0"
tar = { version = "0.4.18", default-features = false }
tempfile = "3.0"
termcolor = "1.0"
toml = "0.5.0"
toml = "0.5.3"
url = { version = "2.0", features = ['serde'] }
walkdir = "2.2"
clap = "2.31.2"

View file

@ -222,7 +222,7 @@ Caused by:
could not parse input as TOML
Caused by:
expected an equals, found eof at line 1
expected an equals, found eof at line 1 column 2
",
)
.run();
@ -465,7 +465,7 @@ Caused by:
could not parse input as TOML
Caused by:
expected a table key, found a newline at line 8
expected a table key, found a newline at line 8 column 23
",
)
.run();

View file

@ -188,7 +188,7 @@ Caused by:
could not parse input as TOML
Caused by:
invalid number at line 3
invalid number at line 3 column 19
",
)
.run();
@ -208,7 +208,7 @@ Caused by:
could not parse input as TOML
Caused by:
invalid number at line 1
invalid number at line 1 column 5
",
)
.run();
@ -2274,7 +2274,7 @@ Caused by:
could not parse input as TOML
Caused by:
expected an equals, found an identifier at line 1
expected an equals, found an identifier at line 1 column 6
",
)
.run();

View file

@ -439,7 +439,7 @@ Caused by:
Caused by:
could not parse input as TOML
Caused by:
expected an equals, found eof at line 1",
expected an equals, found eof at line 1 column 5",
);
}
@ -517,7 +517,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",
could not parse TOML list: invalid number at line 1 column 10",
);
// Try some other sequence-like types.

View file

@ -2439,7 +2439,7 @@ fn invalid_git_dependency_manifest() {
could not parse input as TOML\n\
\n\
Caused by:\n \
duplicate key: `categories` for key `project`",
duplicate key: `categories` for key `project` at line 10 column 17",
path2url(&git_root),
path2url(&git_root),
))

View file

@ -1001,7 +1001,7 @@ failed to parse manifest at `[..]foo/Cargo.toml`
Caused by:
could not parse input as TOML
Caused by:
expected an equals, found eof at line 1
expected an equals, found eof at line 1 column 5
Created binary (application) `bar` package
",
)