Skip to content

Commit

Permalink
chore: replace strum_macros with strum feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed Oct 31, 2024
1 parent e41c630 commit 46aaec0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ serde_derive = "1"
serde_with = "3"
shellexpand = "3"
simplelog = { version = "0.12", default-features = false }
strum = "0.26"
strum_macros = "0.26"
strum = { version = "0.26", features = ["derive"] }
subprocess = "0.2"
2 changes: 1 addition & 1 deletion src/repository_info.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::PathBuf;

use strum_macros::Display;
use strum::Display;

#[derive(Display)]
pub enum RepositoryState {
Expand Down

0 comments on commit 46aaec0

Please sign in to comment.