-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.16 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
[package]
name = "inspector-gadget"
version = "0.3.0"
authors = ["garnt"]
description= """
A cli-based, multi-architecture gadget-finding tool, designed for fast
operation, even with large binaries like browser engines and OS kernels.
"""
documentation = "https://github.com/garnts/inspector-gadget"
homepage = "https://github.com/garnts/inspector-gadget"
repository = "https://github.com/garnts/inspector-gadget"
keywords = ["gadget", "rop"]
license = "GPL-3.0"
edition = "2021"
[dependencies]
capstone = "0.12.0"
capstone-sys = "0.16.0"
clap = { version = "4.5.4", features = ["derive"] }
indicatif = { version = "0.17.8", features = ["rayon"]}
itertools = "0.12.1"
object = "0.35.0"
rayon = "1.10.0"
regex = "1.10.4"
# This is the main way to strip binaries in the deb package created by
# 'cargo deb'. For other release binaries, we (currently) call 'strip'
# explicitly in the release process.
[profile.deb]
inherits = "release"
debug = false
[package.metadata.deb]
section = "utils"
assets = [
["target/release/inspector-gadget", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/inspector-gadget/", "644"],
["README.md", "usr/share/doc/inspector-gadget/README", "644"],
]