-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 948 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (40 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "gemini-rs"
version = "2.0.1"
edition = "2024"
license = "MIT"
authors = [
"gvozdvmozgu <gvozdvmozgu@gmail.com>",
"Shuflduf <shuflduf@shuflduf.xyz>",
]
description = "A library to interact with the Google Gemini API"
homepage = "https://github.com/Shuflduf/gemini-rs"
repository = "https://github.com/Shuflduf/gemini-rs"
readme = "README.md"
keywords = ["ai", "gemini", "google"]
[dependencies]
base64 = { version = "0.21", optional = true }
bytes = "1.10.1"
futures = "0.3"
reqwest = {
version = "0.12.19",
default-features = false,
features = ["json", "rustls-tls", "stream"]
}
secrecy = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.43", features = ["full"] }
[dev-dependencies]
tokio = {
version = "1.43",
default-features = false,
features = [
"macros",
"rt-multi-thread",
]
}
[features]
default = []
use-base64 = ["base64"]