Skip to content

Commit dfcec81

Browse files
authored
Merge pull request #61 from tisonkun/upgrade-toml
chore: upgrade toml_edit version
2 parents 4f0990e + e32fd5f commit dfcec81

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ readme = "./README.md"
1515
rust-version = "1.67.0"
1616

1717
[dependencies]
18-
toml_edit = { version = "0.22.24", default-features = false, features = [
18+
toml_edit = { version = "0.23.2", default-features = false, features = [
1919
"parse",
2020
] }
2121

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ type CrateNames = BTreeMap<String, FoundCrate>;
175175
/// # Returns
176176
///
177177
/// - `Ok(FoundCrate::Itself)` the searched crate is the current crate being compiled.
178-
/// - `Ok(FoundCrate::Name(new_name))` the searched create was found with the given name in the `Cargo.toml`.
178+
/// - `Ok(FoundCrate::Name(new_name))` the searched create was found with the given name in the
179+
/// `Cargo.toml`.
179180
/// - `Err` if an error occurred. See [`Error`].
180181
///
181182
/// The returned crate name is sanitized in such a way that it is a valid rust identifier. Thus,

0 commit comments

Comments
 (0)