Initial debug adapter protocol implementation

This commit is contained in:
Dmitry Sharshakov 2021-08-12 16:35:15 +03:00 committed by Blaž Hrastnik
parent d4c17b633c
commit 0f6e81b85b
7 changed files with 739 additions and 0 deletions

20
helix-dap/Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "helix-dap"
version = "0.3.0"
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
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"] }