-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
32 lines (27 loc) · 938 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
[package]
name = "pe-parser"
version = "0.6.0"
edition = "2021"
license = "MIT"
authors = ["Isaac Marovitz <[email protected]>"]
description = "A blazing fast PE Parser with pretty print"
readme = "README.md"
repository = "https://github.com/IsaacMarovitz/pe-parser"
keywords = ["parser", "cli", "windows", "binary"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = ["clap"]
[dependencies]
bytemuck = { version = "1.16.0", features = ["derive"] }
num-traits = { version = "0.2.19", default-features = false }
num-derive = "0.4.2"
bitflags = { version = "2.5.0", default-features = false }
chrono = { version = "0.4.38", default-features = false }
clap = { version = "4.5.6", features = ["cargo"], optional = true }
[dev-dependencies]
datatest-stable = "0.2.9"
[[test]]
name = "pe-parser"
harness = false