Skip to content

Commit

Permalink
Merge pull request #92 from Ortham/dependabot/cargo/rust-ini-0.21.0
Browse files Browse the repository at this point in the history
Update rust-ini requirement from 0.20.0 to 0.21.0
  • Loading branch information
Ortham authored Mar 18, 2024
2 parents cd9353f + 7b3d578 commit d1d42d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ esplugin = "4.1.0"
regex = "1.0.0"
unicase = "2.0.0"
rayon = "1.0.0"
rust-ini = { version = "0.20.0", features = ["case-insensitive"] }
rust-ini = { version = "0.21.0", features = ["case-insensitive"] }
keyvalues-parser = "0.2.0"

[target.'cfg(windows)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ impl From<ini::ParseError> for Error {
Error::IniParsingError {
line: error.line,
column: error.col,
message: error.msg,
message: error.msg.to_string(),
}
}
}
Expand Down

0 comments on commit d1d42d1

Please sign in to comment.