-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 1.09 KB
/
Cargo.toml
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
[package]
authors = ["Ali Aish <onlyghostz@gmail.com>"]
categories = ["api-bindings", "asynchronous"]
description = "A Rust library that serves as a wrapper around the Google Gemini API, providing support for streaming"
documentation = "https://docs.rs/gem-rs"
edition = "2021"
homepage = "https://github.com/0xhades/gem-rs"
keywords = ["gemini", "api", "wrapper", "ai", "google"]
license = "MIT OR Apache-2.0"
name = "gem-rs"
readme = "README.md"
repository = "https://github.com/0xhades/gem-rs"
version = "0.1.75"
[dependencies]
base64 = "0.22.1"
chrono = "0.4.38"
dotenv = "0.15.0"
futures = "0.3.30"
log = "0.4.22"
pretty_env_logger = "0.5.0"
reqwest = {version = "0.12.7", features = ["json", "stream", "multipart"]}
reqwest-streams = {version = "0.7.0", features = ["json"]}
serde = {version = "1.0.210", features = ["derive"]}
serde_json = "1.0.128"
sha256 = "1.5.0"
tokio = {version = "1.40.0", features = ["full"]}
[dev-dependencies]
[build-dependencies]
[features]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[badges]
maintenance = {status = "actively-developed"}