Initial Commit

This commit is contained in:
2025-11-26 17:51:15 +00:00
commit 6786a5e9f0
16 changed files with 1832 additions and 0 deletions

27
Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "google-genai"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
deadqueue = "0.2"
reqwest = { version = "0.12", features = ["json", "gzip"] }
reqwest-eventsource = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1"}
serde_with = { version = "3.9", features = ["base64"]}
tracing = "0.1"
tokio = { version = "1" }
tokio-stream = "0.1.17"
[dev-dependencies]
console = "0.16.0"
dialoguer = "0.12.0"
dotenvy = "0.15.7"
image = "0.25.2"
indicatif = "0.18.0"
tokio = { version = "1.47.0", features = ["full"] }
tracing-subscriber = "0.3.20"