-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (48 loc) · 1.07 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
47
48
49
50
51
[package]
authors = ["Shivix"]
categories = ["command-line-interface", "command-line-utilities", "development-tools"]
description = "A modular and extensible debugger"
edition = "2021"
exclude = [
".gitignore",
"LICENSE",
]
homepage = "https://github.com/Shivix/moxi"
keywords = [
"debug",
"debugger",
"cli",
"tool",
"utility",
]
license = "GPL-3.0-only"
name = "moxi"
repository = "https://github.com/Shivix/moxi"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# How do I make sure not all binaries get all dependencies?
[dependencies]
addr2line = "0.24.1"
anyhow = "1.0.86"
clap = "4.5.13"
goblin = "0.8.2"
nix = { version = "0.29.0", features = ["ptrace", "process"] }
object = "0.36.2"
[[bin]]
name = "moxi_init"
path = "src/init.rs"
[[bin]]
name = "moxid"
path = "src/daemon.rs"
[[bin]]
name = "moxi_start"
path = "src/start.rs"
[[bin]]
name = "moxi_breakpoint"
path = "src/breakpoint.rs"
[[bin]]
name = "moxi_step"
path = "src/step.rs"
[[bin]]
name = "moxi_source"
path = "src/source.rs"