2021-08-12 15:35:15 +02:00
|
|
|
[package]
|
|
|
|
name = "helix-dap"
|
2022-02-13 10:31:51 +01:00
|
|
|
version = "0.6.0"
|
2021-08-12 15:35:15 +02:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
2023-11-27 13:24:57 +01:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2021-08-12 15:35:15 +02:00
|
|
|
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]
|
2022-02-13 10:31:51 +01:00
|
|
|
helix-core = { version = "0.6", path = "../helix-core" }
|
2021-08-12 15:35:15 +02:00
|
|
|
anyhow = "1.0"
|
|
|
|
log = "0.4"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
2021-08-16 05:30:55 +02:00
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "net", "sync"] }
|
2023-11-25 17:37:00 +01:00
|
|
|
which = "5.0.0"
|
2021-08-12 15:45:01 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
fern = "0.6"
|