Skip to content

Commit

Permalink
chore: use wgpu backend for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
buxx committed Aug 10, 2024
1 parent 1162320 commit da9ddec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion configure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ path = "src/lib.rs"
[dependencies]
trsync_core = { path = "../core" }
trsync_manager = { path = "../manager" }
eframe = "0.21.3"
eframe = { version = "0.21.3", default-features = false, features = [
"default_fonts",
"wgpu",
] }
wgpu = "0.15.0"
rfd = "0.10"
anyhow = "1.0.69"
crossbeam-channel = "0.5"
Expand Down
6 changes: 5 additions & 1 deletion monitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ path = "src/lib.rs"
[dependencies]
trsync_core = { path = "../core" }
trsync_manager = { path = "../manager" }
eframe = "0.21.3"
eframe = { version = "0.21.3", default-features = false, features = [
"default_fonts",
"wgpu",
] }
wgpu = "0.15.0"
rfd = "0.10"
anyhow = "1.0.69"
crossbeam-channel = "0.5"
Expand Down
1 change: 1 addition & 0 deletions systray/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// This line indicate windows to close associated terminal
// #![windows_subsystem = "windows"]

use anyhow::Result;
Expand Down

0 comments on commit da9ddec

Please sign in to comment.