-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (25 loc) · 918 Bytes
/
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
[package]
name = "aleph-alpha-client"
version = "0.13.2"
edition = "2021"
description = "Interact with large language models provided by the Aleph Alpha API in Rust code"
license = "MIT"
keywords = ["ai", "aleph-alpha", "llm"]
repository = "https://github.com/Aleph-Alpha/aleph-alpha-client-rs"
categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.6"
base64 = "0.22.0"
futures-util = "0.3.31"
image = "0.25.1"
itertools = "0.13.0"
reqwest = { version = "0.12.3", features = ["json", "stream"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "2.0.0"
tokenizers = { version = "0.20.0", default-features = false, features = ["onig", "esaxx_fast"] }
[dev-dependencies]
dotenv = "0.15.0"
tokio = { version = "1.37.0", features = ["rt", "macros"] }
wiremock = "0.6.0"