mcp_server_collection now also a library

own_assist now bundles the server collection by default
This commit is contained in:
2026-05-14 17:39:10 +02:00
parent 18221b7b56
commit 5f16db06f5
18 changed files with 717 additions and 141 deletions
+7 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "own_assist"
version = "0.2.0"
version = "0.3.0"
edition = "2024"
[dependencies]
@@ -8,11 +8,11 @@ ollama-rs = { version = "0.3.4", features = ["macros", "headers"] }
tokio = { version = "1.50.0", features = ["rt", "rt-multi-thread", "macros", "io-std"] }
rmcp = { version = "1.3.0", features = ["client"] }
log = { version = "0.4.29" }
env_logger = "0.11.10"
serde = { version = "1.0.228", features = ["derive"] }
url = "2.5.8"
own_mcp = { path = "own_mcp" }
own_assist_common = { path = "common" }
mcp_server_collection = { path = "mcp_server_collection", optional = true}
thiserror = "2.0.18"
dialoguer = "0.12.0"
indicatif = "0.18.4"
@@ -20,4 +20,8 @@ console = "0.16.3"
clap = { version = "4.6.0", features = ["derive"] }
base64 = "0.22.1"
cpal = "0.17.3"
rodio = "0.22.2"
rodio = "0.22.2"
[features]
default = ["built-in-mcp-collection"]
built-in-mcp-collection = ["dep:mcp_server_collection"]