Skip to content

Commit

Permalink
chore: update workflow and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Oct 7, 2023
1 parent 1d995fb commit 2dbf511
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
run: cargo build --features=all --verbose
- name: Run tests
run: cargo test --verbose
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "haruhishot"
version = "0.3.14"
version = "0.3.15"
edition = "2021"
build = "build.rs"

Expand Down
10 changes: 5 additions & 5 deletions src/swayloop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ use sctk::{
delegate_compositor, delegate_keyboard, delegate_layer, delegate_output, delegate_registry,
delegate_seat, delegate_shm,
output::{OutputHandler, OutputState},
reexports::client::{
globals::registry_queue_init,
protocol::{wl_keyboard, wl_output, wl_seat, wl_shm, wl_surface},
Connection, QueueHandle,
},
registry::{ProvidesRegistryState, RegistryState},
registry_handlers,
seat::{
Expand All @@ -19,11 +24,6 @@ use sctk::{
shm::{slot::SlotPool, Shm, ShmHandler},
};
use std::convert::TryInto;
use wayland_client::{
globals::registry_queue_init,
protocol::{wl_keyboard, wl_output, wl_seat, wl_shm, wl_surface},
Connection, QueueHandle,
};
use xkbcommon::xkb::keysyms;

use once_cell::sync::Lazy;
Expand Down

0 comments on commit 2dbf511

Please sign in to comment.