- Add .cargo/config.toml with sunbeam registry index - Set publish target to sunbeam registry in Cargo.toml - Update homepage and repository URLs to Gitea
33 lines
885 B
TOML
33 lines
885 B
TOML
[package]
|
|
name = "mistralai-client"
|
|
description = "Mistral AI API client library for Rust (unofficial)."
|
|
license = "Apache-2.0"
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
rust-version = "1.76.0"
|
|
|
|
authors = ["Ivan Gabriele <ivan.gabriele@protonmail.com>"]
|
|
categories = ["api-bindings"]
|
|
homepage = "https://src.sunbeam.pt/studio/mistralai-client-rs"
|
|
keywords = ["mistral", "mistralai", "client", "api", "llm"]
|
|
readme = "README.md"
|
|
repository = "https://src.sunbeam.pt/studio/mistralai-client-rs"
|
|
publish = ["sunbeam"]
|
|
|
|
[dependencies]
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
env_logger = "0.11"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
reqwest = { version = "0.12", features = ["json", "blocking", "stream", "multipart"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
|
|
[dev-dependencies]
|
|
jrest = "0.2"
|