Hapus seluruh pipeline LSP (client, manager, provisioner, dan 7 tool lsp_*) dari codebase: - apps/infrastructure/src/lsp/ (client.rs, manager.rs, provisioner/*) - apps/infrastructure/src/tools/lsp/ (connect, disconnect, diagnostics, hover, completion, definition, references) - ToolCtx/ToolCtxBuilder: hapus field lsp_manager - Daemon state: hapus lsp_manager, lsp_provision_msgs, shutdown_lsp - Registry: hapus registrasi 7 tool lsp_* - Settings: hapus lsp_auto_provision + lsp_languages - Agent definitions: hapus lsp_* dari allowed tools coder/reviewer - Cargo: hapus dependency lsp-types (workspace + infra) - Update dokumentasi mod + arch_audit forbidden list Verifikasi: cargo check/clippy/test semua hijau (54 test), tidak ada referensi lsp_* tersisa di luar CHANGELOG.
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "zesdex-infrastructure"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
# Infrastructure layer — concrete implementations of domain repository
|
|
# traits, application port traits, and all platform services.
|
|
# Depends on domain + application; NEVER on interfaces.
|
|
[dependencies]
|
|
zesdex-domain = { path = "../domain" }
|
|
zesdex-application = { path = "../application" }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml_ng.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
reqwest.workspace = true
|
|
rusqlite.workspace = true
|
|
base64.workspace = true
|
|
sha2.workspace = true
|
|
hex.workspace = true
|
|
libc.workspace = true
|
|
dirs.workspace = true
|
|
regex.workspace = true
|
|
globset.workspace = true
|
|
ignore.workspace = true
|
|
nucleo-matcher.workspace = true
|
|
futures-util.workspace = true
|
|
rmcp.workspace = true
|
|
tiktoken-rs.workspace = true
|
|
similar.workspace = true
|
|
syntect.workspace = true
|
|
pulldown-cmark.workspace = true
|
|
infer.workspace = true
|
|
webbrowser.workspace = true
|
|
url.workspace = true
|
|
percent-encoding.workspace = true
|
|
dom_smoothie.workspace = true
|
|
fast_html2md.workspace = true
|
|
scraper.workspace = true
|
|
include_dir.workspace = true
|
|
rand_core = { version = "0.6", features = ["getrandom"] }
|
|
axum.workspace = true
|
|
tower.workspace = true
|
|
tower-http.workspace = true
|
|
argon2.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
clap.workspace = true
|