-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (43 loc) · 1.03 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "gdbmi"
version = "0.0.2"
authors = ["Daniel Franklin <[email protected]>"]
edition = "2018"
license = "MIT"
description = "(WIP) Interact with a GDB session through the GDB machine interface"
repository = "https://github.com/danielzfranklin/gdbmi"
keywords = ["gdb", "gdbmi", "debugger", "debug", "debugging"]
categories = ["development-tools"]
[features]
# Build tests that require rr
test_rr = []
# Build tests that require rd
test_rd = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = "6.1.2"
regex = "1.4.6"
lazy_static = "1.4.0"
thiserror = "1.0.24"
displaydoc = "0.2.1"
bytes = "1.0.1"
tracing = "0.1.25"
rand = "0.8.3"
tokio = { version = "1.5.0", features = [
"macros",
"process",
"sync",
"io-util",
"rt",
"time"
] }
camino = "1.0.4"
derivative = "2.2.0"
[dev-dependencies]
pretty_assertions = "0.7.2"
eyre = "0.6.5"
tokio-test = "0.4.1"
tracing-subscriber = "0.2.17"
color-eyre = "0.5.11"
insta = "1.7.1"
duct = "0.13.5"