diff options
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 |