-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 1.05 KB
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
[package]
name = "ttd-gdbserver"
version = "0.1.0"
edition = "2021"
description = "Replay WinDbg TTD traces over the GDB Remote Serial Protocol — reversible debugging for GDB, LLDB and Delve on Windows"
readme = "README.md"
publish = false
[profile.release]
lto = true
codegen-units = 1
strip = true
[dependencies]
thiserror = "2"
log = "0.4"
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }
# GDB RSP frontend is built on gdbstub, patched with an `UnknownPacket`
# target hook so Delve's qRRCmd can be handled while gdbstub owns all
# standard protocol machinery. The three patches live on the `ttd-dbg`
# branch of the fork below (each also submitted upstream as a separate PR).
gdbstub = { git = "https://github.com/lwintermelon/gdbstub", branch = "ttd-dbg", features = ["std"] }
gdbstub_arch = { git = "https://github.com/lwintermelon/gdbstub", branch = "ttd-dbg" }
quick-xml = { version = "0.42", default-features = false, features = ["serialize"] }
ctrlc = { version = "3", features = ["termination"] }
[build-dependencies]
cc = "1"
bindgen = "0.72"