Skip to content

Commit

Permalink
chore: ⬆️ Update some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zarik5 committed Jan 11, 2024
1 parent da30886 commit 9cfd449
Show file tree
Hide file tree
Showing 9 changed files with 505 additions and 404 deletions.
888 changes: 496 additions & 392 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion alvr/client_mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ alvr_client_core.workspace = true
alvr_packets.workspace = true
alvr_session.workspace = true

eframe = "0.24"
eframe = "0.25"
env_logger = "0.10"
rand = "0.8"
2 changes: 1 addition & 1 deletion alvr/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ enable-messagebox = ["rfd"]
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
backtrace = "0.3"
glam = { version = "0.24", features = ["serde"] }
glam = { version = "0.25", features = ["serde"] }
log = "0.4"
once_cell = "1"
parking_lot = "0.12"
Expand Down
4 changes: 2 additions & 2 deletions alvr/dashboard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ alvr_gui_common.workspace = true

bincode = "1"
chrono = "0.4"
eframe = "0.24"
eframe = "0.25"
env_logger = "0.10"
ico = "0.3"
rand = "0.8"
Expand All @@ -27,7 +27,7 @@ statrs = "0.16"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
alvr_server_io.workspace = true
sysinfo = { version = "0.29", default-features = false }
sysinfo = { version = "0.30", default-features = false }
tungstenite = "0.21"
ureq = { version = "2", features = ["json"] }

Expand Down
5 changes: 1 addition & 4 deletions alvr/dashboard/src/steamvr_launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ use std::{
thread,
time::{Duration, Instant},
};
use sysinfo::{ProcessExt, ProcessRefreshKind, RefreshKind, System, SystemExt};

#[cfg(windows)]
use sysinfo::PidExt;
use sysinfo::{ProcessRefreshKind, RefreshKind, System};

const SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(10);

Expand Down
2 changes: 1 addition & 1 deletion alvr/gui_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license.workspace = true
[dependencies]
alvr_common.workspace = true

egui = "0.24"
egui = "0.25"
2 changes: 1 addition & 1 deletion alvr/launcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ alvr_common.workspace = true
alvr_gui_common.workspace = true

anyhow = "1"
eframe = "0.24"
eframe = "0.25"
futures-util = "0.3.28"
open = "5"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "stream", "json"] }
Expand Down
2 changes: 1 addition & 1 deletion alvr/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ tokio-tungstenite = "0.20"
tokio-util = { version = "0.7", features = ["codec"] }
serde = "1"
serde_json = "1"
sysinfo = { version = "0.29", default-features = false }
sysinfo = { version = "0.30", default-features = false }

[build-dependencies]
alvr_filesystem = { path = "../filesystem" }
Expand Down
2 changes: 1 addition & 1 deletion alvr/server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use std::{
thread::{self, JoinHandle},
time::{Duration, Instant},
};
use sysinfo::{ProcessRefreshKind, RefreshKind, SystemExt};
use sysinfo::{ProcessRefreshKind, RefreshKind};
use tokio::{runtime::Runtime, sync::broadcast};

pub static LIFECYCLE_STATE: RwLock<LifecycleState> = RwLock::new(LifecycleState::StartingUp);
Expand Down

0 comments on commit 9cfd449

Please sign in to comment.