29 lines
670 B
TOML
29 lines
670 B
TOML
[package]
|
|
name = "uncloseai"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
description = "Rust client library for interacting with vLLM, Ollama, and OpenAI-compatible APIs"
|
|
license = "MIT"
|
|
|
|
# Library crate
|
|
[lib]
|
|
name = "uncloseai"
|
|
path = "src/lib.rs"
|
|
|
|
# Original binary (kept for backward compatibility)
|
|
[[bin]]
|
|
name = "uncloseai"
|
|
path = "src/uncloseai.rs"
|
|
|
|
# Examples
|
|
[[example]]
|
|
name = "basic"
|
|
path = "examples/basic.rs"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12.9", features = ["json", "stream"] }
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
serde_json = "1.0.133"
|
|
tokio = { version = "1.42.0", features = ["full"] }
|
|
futures-util = "0.3.31"
|
|
futures-core = "0.3.31"
|