Skip to content

Commit

Permalink
chore(deps): cargo update
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Jan 9, 2025
1 parent 2d97ee1 commit c71e61f
Show file tree
Hide file tree
Showing 10 changed files with 73 additions and 68 deletions.
113 changes: 57 additions & 56 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
paste = "1"
sysinfo = "0.31"
sysinfo = "0.33"
uds_windows = "1"
win32-display-data = { git = "https://github.com/LGUG2Z/win32-display-data", rev = "dd65e3f22d0521b78fcddde11abc2a3e9dcc32a8" }
windows-implement = { version = "0.58" }
windows-interface = { version = "0.58" }
windows-core = { version = "0.58" }
shadow-rs = "0.35"
shadow-rs = "0.37"
which = "7"

[workspace.dependencies.windows]
Expand Down
2 changes: 1 addition & 1 deletion komorebi-bar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ egui-phosphor = "0.8"
font-loader = "0.11"
hotwatch = { workspace = true }
image = "0.25"
netdev = "0.31"
netdev = "0.32"
num = "0.4"
num-derive = "0.4"
num-traits = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion komorebi-bar/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl Network {
if let Some(friendly_name) = &interface.friendly_name {
self.default_interface.clone_from(friendly_name);

self.networks_network_activity.refresh();
self.networks_network_activity.refresh(true);

for (interface_name, data) in &self.networks_network_activity {
if friendly_name.eq(interface_name) {
Expand Down
2 changes: 1 addition & 1 deletion komorebi-bar/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Storage {
fn output(&mut self) -> Vec<String> {
let now = Instant::now();
if now.duration_since(self.last_updated) > Duration::from_secs(self.data_refresh_interval) {
self.disks.refresh();
self.disks.refresh(true);
self.last_updated = now;
}

Expand Down
2 changes: 1 addition & 1 deletion komorebi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ windows-core = { workspace = true }
windows-implement = { workspace = true }
windows-interface = { workspace = true }
winput = "0.2"
winreg = "0.52"
winreg = "0.53"

[build-dependencies]
shadow-rs = { workspace = true }
Expand Down
4 changes: 3 additions & 1 deletion komorebi/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use shadow_rs::ShadowBuilder;

fn main() {
shadow_rs::new().unwrap();
ShadowBuilder::builder().build().unwrap();
}
Loading

0 comments on commit c71e61f

Please sign in to comment.