basic features like streaming, stopping, simple formatting, etc.
This commit is contained in:
parent
3dbfa61c0f
commit
24990f514f
7 changed files with 887 additions and 143 deletions
19
Cargo.toml
19
Cargo.toml
|
|
@ -4,10 +4,17 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
gtk4 = { version = "0.9", features = ["v4_6"] }
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
# GTK4 and GLib
|
||||
gtk4 = { version = "0.9", features = ["v4_12"] }
|
||||
|
||||
# HTTP client with JSON support
|
||||
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
|
||||
|
||||
# Async runtime and utilities
|
||||
tokio = { version = "1.0", features = ["rt-multi-thread", "time"] }
|
||||
futures-util = "0.3"
|
||||
async-channel = "2.1"
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
pango = "0.20"
|
||||
regex = "1.0"
|
||||
serde_json = "1.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue