Skip to content

Commit

Permalink
chore(deps): Combine strum and strum_macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukesor committed Nov 6, 2024
1 parent 9c79092 commit 420306d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 9 deletions.
5 changes: 3 additions & 2 deletions 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 @@ -23,8 +23,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
snap = "1.1"
strum = "0.26"
strum_macros = "0.26"
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1.36", features = ["rt-multi-thread", "time", "io-std"] }
handlebars = "5.1"
anyhow = "1"
Expand Down
1 change: 0 additions & 1 deletion pueue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ shell-escape = "0.1"
simplelog = "0.12"
snap.workspace = true
strum.workspace = true
strum_macros.workspace = true
tempfile = "3"
tokio.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion pueue/src/client/commands/wait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use chrono::Local;
use crossterm::style::{Attribute, Color};
use pueue_lib::network::message::TaskSelection;
use pueue_lib::state::State;
use strum_macros::{Display, EnumString};
use strum::{Display, EnumString};
use tokio::time::sleep;

use pueue_lib::network::protocol::GenericStream;
Expand Down
1 change: 0 additions & 1 deletion pueue_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ serde_yaml = "0.9"
shellexpand = "3.1"
snap.workspace = true
strum.workspace = true
strum_macros.workspace = true
thiserror = "1.0"
tokio = { workspace = true, features = ["macros", "net", "io-util"] }
tokio-rustls = { version = "0.26", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pueue_lib/src/network/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::PathBuf;

use chrono::prelude::*;
use serde::{Deserialize, Serialize};
use strum_macros::{Display, EnumString};
use strum::{Display, EnumString};

use crate::state::{Group, State};
use crate::task::Task;
Expand Down
2 changes: 1 addition & 1 deletion pueue_lib/src/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{collections::HashMap, path::PathBuf};

use chrono::prelude::*;
use serde::{Deserialize, Serialize};
use strum_macros::Display;
use strum::Display;

use crate::state::PUEUE_DEFAULT_GROUP;

Expand Down

0 comments on commit 420306d

Please sign in to comment.