From 24b60e74a03c96c4097d65ba422437a5a7b360c5 Mon Sep 17 00:00:00 2001 From: doryan Date: Mon, 12 Aug 2024 12:17:27 +0400 Subject: [PATCH] feat(crate): add gio external crate --- Cargo.lock | 1 + Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 9bd309c..ebef678 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -470,6 +470,7 @@ name = "laboratory_works" version = "0.1.0" dependencies = [ "bitvec", + "gio", "gtk4", "libadwaita", "tokio", diff --git a/Cargo.toml b/Cargo.toml index ea4a3f5..527cba9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ edition = "2021" [dependencies] adw = { version = "0.7.0", package = "libadwaita", features = ["v1_4"] } bitvec = "1.0.1" -gtk4 = "0.9.0" +gio = {version = "0.20.0", features = ["v2_74"]} +gtk4 = { version = "0.9.0"} tokio = { version = "1.39.2", features = ["rt", "time", "rt-multi-thread", "macros", "sync"] }