-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
35 lines (32 loc) · 1.38 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
##############################################################################
# Copyright © 2023 Kévin Lesénéchal <[email protected]> #
# This file is part of the elf-info CLI tool. #
# #
# elf-info is free software; you can redistribute it and/or modify it under #
# the terms of the GNU General Public License as published by the Free #
# Software Foundation; either version 3 of the License, or (at your option) #
# any later version. See LICENSE file for more information. #
##############################################################################
[package]
name = "elf-info"
version = "0.3.0"
description = "Inspect and dissect an ELF file with pretty formatting."
authors = ["Kévin Lesénéchal <[email protected]>"]
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/kevin-lesenechal/elf-info"
categories = ["development-tools", "command-line-utilities"]
keywords = ["elf", "disassembly", "objdump", "readelf"]
[[bin]]
name = "elf"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive", "env"] }
goblin = { version = "0.6.1", features = ["elf64"] }
gimli = "0.27.2"
anyhow = "1.0"
memmap2 = "0.5.7"
rustc-demangle = "0.1.21"
regex = "1.6"
iced-x86 = "1.17"
byteorder = "1.4.3"