From 0f6e81b85be6e7e8f08446f3cd373da38dd67360 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Thu, 12 Aug 2021 16:35:15 +0300 Subject: Initial debug adapter protocol implementation --- helix-dap/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 helix-dap/Cargo.toml (limited to 'helix-dap/Cargo.toml') diff --git a/helix-dap/Cargo.toml b/helix-dap/Cargo.toml new file mode 100644 index 00000000..6adaaedd --- /dev/null +++ b/helix-dap/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "helix-dap" +version = "0.3.0" +authors = ["Blaž Hrastnik "] +edition = "2018" +license = "MPL-2.0" +description = "DAP client implementation for Helix project" +categories = ["editor"] +repository = "https://github.com/helix-editor/helix" +homepage = "https://helix-editor.com" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0" +log = "0.4" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +thiserror = "1.0" +tokio = { version = "1.9", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] } -- cgit v1.2.3-70-g09d2