Skip to content

Commit

Permalink
Bump more dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-plan9 committed Aug 29, 2023
1 parent 83372dd commit 5b6c76a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 2 additions & 3 deletions crates/lillinput-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ config = "0.13"
i3ipc = "0.10"
lillinput = { path = "../lillinput", version = "0.3.0" }
log = { version = "0.4.20", features = ["serde"] }
serde = { version = "~1.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
simplelog = "0.12"
strum = { version = "~0.24", features = ["derive"] }
strum_macros = "~0.24"
strum = { version = "0.25", features = ["derive"] }
xdg = "2.5"

[dev-dependencies]
Expand Down
9 changes: 4 additions & 5 deletions crates/lillinput/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ categories = ["command-line-utilities", "gui"]
filedescriptor = "0.8"
i3ipc = "0.10"
input = "~0.7"
itertools = "~0.10"
libc = "~0.2"
itertools = "0.11"
libc = "0.2"
log = { version = "0.4.20" }
shlex = "~1.1"
strum = { version = "~0.24", features = ["derive"] }
strum_macros = "~0.24"
shlex = "1.1"
strum = { version = "0.25", features = ["derive"] }
thiserror = "1.0"

[dev-dependencies]
Expand Down
3 changes: 1 addition & 2 deletions crates/lillinput/src/events/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ pub use crate::events::defaultprocessor::DefaultProcessor;
pub use crate::events::errors::{LibinputError, ProcessorError};

use input::event::GestureEvent;
use strum::{Display, EnumString, EnumVariantNames};
use strum_macros::EnumIter;
use strum::{Display, EnumIter, EnumString, EnumVariantNames};

/// High-level application events that can trigger an action.
#[derive(
Expand Down

0 comments on commit 5b6c76a

Please sign in to comment.