aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-13 11:25:35 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-13 11:25:35 +0800
commit68474e65c27323da62aad223cea7fb22356b0df6 (patch)
tree3e6806cb3d1b0c2a0b6483fcd1768119620f9012 /Cargo.toml
parent431c117a55d06e45ef48305f67f71e6a2afb76fd (diff)
downloadDropOut-68474e65c27323da62aad223cea7fb22356b0df6.tar.gz
DropOut-68474e65c27323da62aad223cea7fb22356b0df6.zip
feat: Added version control functionality and integrated Tokio and Reqwest to support asynchronous operations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 8 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 82ec8c2..18f5ebb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,12 +4,15 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-gtk = "0.9" # 用于自绘制UI的GTK库
-serde = { version = "1.0", features = ["derive"] } # 用于序列化和反序列化
-toml = "0.5" # 用于配置文件解析
-log = "0.4" # 用于日志记录
-env_logger = "0.9" # 用于环境日志记录
+gtk = "0.9"
+serde = { version = "1.0", features = ["derive"] }
+toml = "0.5"
+log = "0.4"
+env_logger = "0.9"
glib-sys = "0.20.7"
+tokio = { version = "1.49.0", features = ["full"] }
+reqwest = { version = "0.13.1", features = ["json", "blocking"] }
+serde_json = "1.0.149"
[profile.dev]
opt-level = 0