feat: update dependencies

This commit is contained in:
Ilya Zlobintsev
2022-11-19 15:19:08 +02:00
parent ed18f0b79d
commit d76c0fe48b
10 changed files with 167 additions and 241 deletions
+10 -13
View File
@@ -2,19 +2,16 @@
name = "lact-gui"
version = "0.1.0"
authors = ["Ilya Zlobintsev <ilya.zl@protonmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
edition = "2021"
[dependencies]
lact-schema = { path = "../lact-schema" }
gtk = { version = "0.14", features = ["v3_22"] }
pango = "0.14"
glib = "0.14"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
nix = "0.25.0"
anyhow = "1.0.66"
serde_json = "1.0.87"
serde = "1.0.147"
amdgpu-sysfs = { git = "https://github.com/ilya-zlobintsev/amdgpu-sysfs-rs", branch = "blocking" }
gtk = "0.16"
pango = "0.16"
glib = "0.16"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
nix = "0.25"
anyhow = "1.0"
serde_json = "1.0"
serde = "1.0"
+2 -2
View File
@@ -43,8 +43,8 @@ impl Header {
//limits the length of gpu names in combobox
for cell in self.gpu_selector.cells() {
cell.set_property("width-chars", &10).unwrap();
cell.set_property("ellipsize", &EllipsizeMode::End).unwrap();
cell.set_property("width-chars", &10);
cell.set_property("ellipsize", &EllipsizeMode::End);
}
self.gpu_selector.set_active(Some(0));
@@ -75,7 +75,7 @@ impl VulkanInfoFrame {
grid.attach(&features_expander, 0, 2, 5, 1);
let features_scrolled_window = ScrolledWindow::new(NONE_ADJUSTMENT, NONE_ADJUSTMENT);
let features_scrolled_window = ScrolledWindow::builder().build();
features_scrolled_window.set_vexpand(true);