Files
gemini-rs/Cargo.toml
Andre Bandarra 0e219aded0 Make text embedding title optional
- Make text embedding title optional, as sending it causes erros
on tasks that don't support title, like CLASSIFICATION.
- Update dependencies
2024-04-15 11:11:18 +01:00

25 lines
638 B
TOML

[package]
name = "gemini-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
deadqueue = "0.2.4"
futures-util = "0.3.30"
gcp_auth = "0.11.1"
reqwest = { version = "0.12.3", features = ["json", "gzip"] }
reqwest-eventsource = "0.6.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.115"}
tracing = "0.1.40"
tokio = { version = "1.37.0" }
[dev-dependencies]
console = "0.15.8"
dialoguer = "0.11.0"
indicatif = "0.17.8"
tokio = { version = "1.37.0", features = ["full"] }
tracing-subscriber = "0.3.18"