34 lines
762 B
TOML
34 lines
762 B
TOML
[package]
|
|
name = "owlen-ollama"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Ollama provider for OWLEN LLM client"
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
|
|
# HTTP client
|
|
reqwest = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
futures = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Utilities
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true } |