Skip to content

Commit

Permalink
build: ⬆️ update dependency to deserialize color
Browse files Browse the repository at this point in the history
Signed-off-by: zwPapEr <[email protected]>
  • Loading branch information
zwpaper committed Aug 24, 2021
1 parent 88bf85e commit ce534b7
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 34 deletions.
79 changes: 48 additions & 31 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 @@ -20,7 +20,7 @@ clap = "2.33.*"
version_check = "0.9.*"

[dependencies]
crossterm = { git = "https://github.com/crossterm-rs/crossterm", branch = "master", features = ["serde"]}
crossterm = { version = "0.21.0", features = ["serde"]}
dirs = "3.0.*"
libc = "0.2.*"
human-sort = "0.2.2"
Expand Down
2 changes: 1 addition & 1 deletion src/meta/permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl Permissions {
];

let res = strings
.into_iter()
.iter()
.map(|s| s.to_string())
.collect::<Vec<String>>()
.join("");
Expand Down
2 changes: 1 addition & 1 deletion src/meta/symlink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl SymLink {
];

let res = strings
.into_iter()
.iter()
.map(|s| s.to_string())
.collect::<Vec<String>>()
.join("");
Expand Down

0 comments on commit ce534b7

Please sign in to comment.