Skip to content

Commit 293f877

Browse files
Merge pull request #437 from mehcode/dependabot/cargo/rust-ini-0.19
Update rust-ini requirement from 0.18 to 0.19
2 parents 9f73fdd + e8fd988 commit 293f877

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async-trait = { version = "0.1.50", optional = true }
3333
toml = { version = "0.7", optional = true }
3434
serde_json = { version = "1.0.2", optional = true }
3535
yaml-rust = { version = "0.4", optional = true }
36-
rust-ini = { version = "0.18", optional = true }
36+
rust-ini = { version = "0.19", optional = true }
3737
ron = { version = "0.8", optional = true }
3838
json5_rs = { version = "0.4", optional = true, package = "json5" }
3939
indexmap = { version = "2.0.0", features = ["serde"], optional = true }

tests/file_ini.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn test_error_parse() {
6161
assert_eq!(
6262
res.unwrap_err().to_string(),
6363
format!(
64-
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
64+
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
6565
path.display()
6666
)
6767
);

tests/legacy/file_ini.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn test_error_parse() {
5959
assert_eq!(
6060
res.unwrap_err().to_string(),
6161
format!(
62-
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
62+
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
6363
path.display()
6464
)
6565
);

0 commit comments

Comments
 (0)