diff options
| author | main <main@swarm.moe> | 2026-03-19 15:49:41 -0400 |
|---|---|---|
| committer | main <main@swarm.moe> | 2026-03-19 15:49:41 -0400 |
| commit | fa1bd32800b65aab31ea732dd240261b4047522c (patch) | |
| tree | 2fd08af6f36b8beb3c7c941990becc1a0a091d62 /crates/ra-mcp-engine/Cargo.toml | |
| download | adequate-rust-mcp-1.0.0.zip | |
Release adequate-rust-mcp 1.0.0v1.0.0
Diffstat (limited to 'crates/ra-mcp-engine/Cargo.toml')
| -rw-r--r-- | crates/ra-mcp-engine/Cargo.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/crates/ra-mcp-engine/Cargo.toml b/crates/ra-mcp-engine/Cargo.toml new file mode 100644 index 0000000..d5d870d --- /dev/null +++ b/crates/ra-mcp-engine/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "ra-mcp-engine" +categories.workspace = true +description = "Resilient rust-analyzer transport and worker-supervision engine used by adequate-rust-mcp." +edition.workspace = true +keywords.workspace = true +license.workspace = true +readme.workspace = true +repository.workspace = true +rust-version.workspace = true +version.workspace = true + +[dependencies] +lsp-types.workspace = true +ra-mcp-domain = { path = "../ra-mcp-domain" } +serde.workspace = true +serde_json.workspace = true +thiserror.workspace = true +tokio.workspace = true +tracing.workspace = true +url.workspace = true + +[dev-dependencies] +serial_test.workspace = true +tempfile.workspace = true + +[lints] +workspace = true |