-
Notifications
You must be signed in to change notification settings - Fork 67
/
Cargo.toml
37 lines (33 loc) · 886 Bytes
/
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
[package]
authors = ["m4b <[email protected]>"]
name = "bingrep"
version = "0.11.0"
edition = "2021"
rust-version = "1.64.0"
keywords = ["binary", "elf", "mach", "pe", "cross-platform"]
repository = "https://github.com/m4b/bingrep"
license = "MIT"
description = "Cross-platform binary parser and colorizer"
documentation = "https://docs.rs/bingrep"
readme = "README.md"
categories = ["command-line-utilities"]
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "LICENSE", "README.md", "etc/*"]
[dependencies]
atty = "0.2"
hexplay = "0.2"
termcolor = "1"
rustc-demangle = "0.1"
cpp_demangle = "0.4"
scroll = "0.11"
prettytable-rs = "0.10"
env_logger = "0.10"
anyhow = "1"
clap = { version = "4", features = ["derive", "wrap_help"] }
term = "0.7"
[dependencies.metagoblin]
version = "0.8"
[[bin]]
name = "bingrep"
[badges.travis-ci]
branch = "master"
repository = "m4b/bingrep"