[package]
edition = "2021"
name = "imp-llm"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone multi-provider LLM streaming client"
homepage = "https://github.com/kfcafe/imp"
readme = "README.md"
keywords = [
"agent",
"coding",
"llm",
"terminal",
"developer-tools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MPL-2.0"
repository = "https://github.com/kfcafe/imp"
[lib]
name = "imp_llm"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.futures]
version = "0.3"
[dependencies.futures-core]
version = "0.3"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"stream",
"json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.27"
features = ["native-tls"]
[dependencies.tungstenite]
version = "0.27"
[dependencies.url]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3.6"
features = [
"sync-secret-service",
"crypto-rust",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3.6"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3.6"
features = ["windows-native"]