summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-07-20 19:46:27 +0200
committerGitHub <noreply@github.com>2023-07-20 19:46:27 +0200
commit293f87777c257fd1ecacc16ac123fcb73532be4b (patch)
treee240c2541f2681e17d27dc2a62e9db82bca7bfbf
parent9f73fddb4ef712cc19c99d53837534bb3754aa16 (diff)
parente8fd988a7ec39d0a7c60a6300b34865bbccec4a0 (diff)
Merge pull request #437 from mehcode/dependabot/cargo/rust-ini-0.19
Update rust-ini requirement from 0.18 to 0.19
-rw-r--r--Cargo.toml2
-rw-r--r--tests/file_ini.rs2
-rw-r--r--tests/legacy/file_ini.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 91b69c4..9ef24bc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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 }
diff --git a/tests/file_ini.rs b/tests/file_ini.rs
index e7f369a..7561bff 100644
--- a/tests/file_ini.rs
+++ b/tests/file_ini.rs
@@ -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()
)
);
diff --git a/tests/legacy/file_ini.rs b/tests/legacy/file_ini.rs
index 5cbf63d..c330ef2 100644
--- a/tests/legacy/file_ini.rs
+++ b/tests/legacy/file_ini.rs
@@ -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()
)
);