* basic ticket uploading * take project_id in request params instead of env * add an endpoint to list all available projects * add mcp server bin to npx * add missing scripts to package and publish to npm * fix rmcp version * Use utils::asset_dir * Don't run migrations or create DB from MCP * a fix for the first dev run when no frontend/dist/index.html exists * Add more MCP endpoints (#8) * add new endpoints for project and task management * add simpler more focused endpoints to improve agent understanding on this MCP * improve test script * combine npm binaries and allow passing --mcp as an arg * cargo fmt * fixes after rebase * clippy fixes * Script tweaks --------- Co-authored-by: couscous <couscous@runner.com> Co-authored-by: anastasiya1155 <anastasiya1155@gmail.com> Co-authored-by: Louis Knight-Webb <louis@bloop.ai> Co-authored-by: Anastasiia Solop <35258279+anastasiya1155@users.noreply.github.com>
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "vibe-kanban"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "vibe-kanban"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "vibe_kanban"
|
|
path = "src/lib.rs"
|
|
|
|
[lints.clippy]
|
|
uninlined-format-args = "allow"
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "chrono", "uuid"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
|
|
dirs = "5.0"
|
|
git2 = "0.18"
|
|
async-trait = "0.1"
|
|
libc = "0.2"
|
|
rust-embed = "8.2"
|
|
mime_guess = "2.0"
|
|
directories = "6.0.0"
|
|
open = "5.3.2"
|
|
ignore = "0.4"
|
|
command-group = { version = "5.0", features = ["with-tokio"] }
|
|
openssl-sys = { workspace = true }
|
|
rmcp = { version = "0.1.5", features = ["server", "transport-io"] }
|
|
schemars = "0.8"
|
|
|
|
[build-dependencies]
|
|
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
|