Skip to content

Commit

Permalink
chore: update Rust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenautumns committed Jun 12, 2024
1 parent 1e34983 commit eb88a27
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bindings = []

[dependencies]
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
strum = { version = "0.25", features = ["derive"], default-features = false, optional = true }
strum = { version = "0.26", features = ["derive"], default-features = false, optional = true }
a653rs_macros = { version = "0.4.1", path = "macros", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ quote = "1.0"
syn = { version = "2.0", features = [ "full" ] }
static_assertions = "1.1"
bytesize = "1.3"
strum = { version = "0.25", features = ["derive"] }
strum = { version = "0.26", features = ["derive"] }
darling = "0.20"
itertools = "0.12"
itertools = "0.13"
convert_case = "0.6"
humantime = "2.1"

Expand Down
4 changes: 2 additions & 2 deletions macros/src/parse/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::string::ToString;
use bytesize::ByteSize;
use darling::{FromAttributes, FromMeta};
use quote::format_ident;
use strum::{Display, EnumString, EnumVariantNames, VariantNames};
use strum::{Display, EnumString, VariantNames};
use syn::spanned::Spanned;
use syn::{Attribute, Ident, Item};

Expand Down Expand Up @@ -36,7 +36,7 @@ impl FromMeta for SystemTime {
}
}

#[derive(Debug, Clone, Copy, Display, EnumString, EnumVariantNames)]
#[derive(Debug, Clone, Copy, Display, EnumString, VariantNames)]
#[strum(ascii_case_insensitive)]
pub enum Deadline {
Soft,
Expand Down

0 comments on commit eb88a27

Please sign in to comment.