Skip to content

Commit

Permalink
Merge pull request #437 from mehcode/dependabot/cargo/rust-ini-0.19
Browse files Browse the repository at this point in the history
Update rust-ini requirement from 0.18 to 0.19
  • Loading branch information
matthiasbeyer authored Jul 20, 2023
2 parents 9f73fdd + e8fd988 commit 293f877
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async-trait = { version = "0.1.50", optional = true }
toml = { version = "0.7", optional = true }
serde_json = { version = "1.0.2", optional = true }
yaml-rust = { version = "0.4", optional = true }
rust-ini = { version = "0.18", optional = true }
rust-ini = { version = "0.19", optional = true }
ron = { version = "0.8", optional = true }
json5_rs = { version = "0.4", optional = true, package = "json5" }
indexmap = { version = "2.0.0", features = ["serde"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tests/file_ini.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn test_error_parse() {
assert_eq!(
res.unwrap_err().to_string(),
format!(
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
path.display()
)
);
Expand Down
2 changes: 1 addition & 1 deletion tests/legacy/file_ini.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fn test_error_parse() {
assert_eq!(
res.unwrap_err().to_string(),
format!(
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
path.display()
)
);
Expand Down

0 comments on commit 293f877

Please sign in to comment.