-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 951 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "dap-reactor"
version = "0.5.0"
authors = ["Codex Dev <[email protected]>"]
categories = ["development-tools::debugging"]
edition = "2021"
keywords = ["dap"]
license = "MIT/Apache-2.0"
repository = "https://github.com/codx-dev/dap-reactor"
description = "A debug adapter protocol Rust provider."
[dependencies]
async-trait = { version = "0.1", optional = true }
bytes = { version = "1.2", optional = true }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
tokio = { version = "1.21", optional = true, features = ["io-util", "net", "rt", "sync"] }
tracing = { version = "0.1", optional = true }
[dev-dependencies]
tokio = { version = "1.21", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[features]
default = ["reactor", "serde_json/default"]
reactor = ["async-trait", "bytes", "tracing", "tokio"]
[[example]]
name = "async"
required-features = ["reactor"]