Deletes the `owlen-ollama` Cargo.toml and source files, fully removing the Ollama provider from the workspace. This aligns the project with the MCP‑only architecture and eliminates direct provider dependencies.
17 lines
349 B
TOML
17 lines
349 B
TOML
[package]
|
|
name = "owlen-mcp-llm-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "owlen-mcp-llm-server"
|
|
path = "src/main.rs"
|