Skip to content

Commit

Permalink
chore(cargo): bump derive_more to beta.6 (#212)
Browse files Browse the repository at this point in the history
Closes #207
  • Loading branch information
KSXGitHub authored Nov 22, 2023
1 parent 4d246d6 commit c62a631
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ clap = { version = "4", features = ["derive", "string"] }
command-extra = { version = "1.0.0" }
base64 = { version = "0.21.5" }
dashmap = { version = "5.5.3" }
derive_more = { version = "1.0.0-beta.3", features = ["full"] }
derive_more = { version = "1.0.0-beta.6", features = ["full"] }
dunce = { version = "1.0.4" }
home = { version = "0.5.5" }
insta = { version = "1.34.0", features = ["yaml", "glob", "walkdir"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/lockfile/src/pkg_name_suffix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use std::str::FromStr;
/// * `ts-node@10.9.1`, `@types/node@18.7.19`, `typescript@5.1.6`
/// * `react-json-view@1.21.3(@types/react@17.0.49)(react-dom@17.0.2)(react@17.0.2)`
#[derive(Debug, Display, Clone, PartialEq, Eq, Hash, Deserialize, Serialize)]
#[display("{name}@{suffix}")]
#[display(bound(Suffix: Display))]
#[display("{name}@{suffix}")]
#[serde(try_from = "&'de str", into = "String")]
#[serde(bound(
deserialize = "Suffix: FromStr, Suffix::Err: Display",
Expand Down

0 comments on commit c62a631

Please sign in to comment.