-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
executable file
·35 lines (31 loc) · 1 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
[package]
name = "exe"
description = "A PE (Portable Executable) library!"
repository = "https://github.com/frank2/exe-rs"
version = "0.5.6"
authors = ["frank2@dc949.org"]
edition = "2018"
license = "GPL-3.0"
keywords = ["pe", "exe"]
readme = "README.md"
exclude = ["test/*.exe", "test/*.dll", "test/*.sys", "test/*.bin", "*~", "#*", "src/#*", "notes.org"]
documentation = "https://docs.rs/exe"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "1.2.1"
byteorder = "1.1.0"
chrono = { version = "0.4", features = ["clock", "std", "wasmbind"], default-features = false }
hex = "0.4.3"
num-traits = "0.2.14"
pkbuffer = "=0.4.2"
md-5 = "0.9.1"
sha-1 = "0.9.6"
sha2 = "0.9.5"
widestring = "1.0.2"
winapi = { version = "0.3.9", features = ["errhandlingapi", "libloaderapi", "memoryapi", "impl-default"], optional = true }
[features]
default = []
win32 = ["winapi"]
[package.metadata.docs.rs]
features = ["win32"]
default-target = "x86_64-pc-windows-msvc"