-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
56 lines (47 loc) · 1.44 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
52
53
54
55
56
[package]
name = "headcrab"
version = "0.2.0"
authors = ["Headcrab Contributors"]
edition = "2018"
description = "A modern Rust debugging library."
repository = "https://github.com/headcrab-rs/headcrab/"
license = "MIT OR Apache-2.0"
categories = ["development-tools::debugging"]
documentation = "https://docs.rs/headcrab"
homepage = "https://headcrab.rs/"
readme = "README.md"
[dependencies]
lazy_static = "1.4.0"
object = "0.20"
gimli = "0.26.1"
capstone = "0.7.0"
addr2line = "0.17.0"
syntect = {version = "4.4.0", optional = true}
# Dependencies specific to macOS & Linux
[target.'cfg(unix)'.dependencies]
memmap = "0.7.0"
nix = "0.17.0"
libproc = "0.7.2"
libc = "0.2.72"
# Dependencies specific to macOS
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
mach = "0.3"
security-framework-sys = "1.0"
# Dependencies specific to Linux
[target.'cfg(target_os="linux")'.dependencies]
procfs = "0.9.0"
[target.'cfg(target_os="windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winuser","processthreadsapi","winbase","minwinbase","debugapi","winnt","memoryapi","dbghelp"] }
[target.'cfg(target_os = "linux")'.dev-dependencies]
headcrab_inject = { path = "./headcrab_inject" }
imgui = "0.5.0"
imgui-glium-renderer = "0.5.0"
imgui-winit-support = "0.5.0"
glium = "0.27.0"
clipboard = "0.5.0"
[dev-dependencies]
rustyline = "6.2.0"
repl_tools = { path = "./repl_tools" }
[features]
syntax-highlighting = ["syntect"]
[workspace]