mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-19 01:14:43 -05:00
feat: update dependencies
This commit is contained in:
+10
-13
@@ -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"
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user