-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.04 KB
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
40
41
42
43
44
[package]
name = "pe-packer"
version = "0.1.0"
edition = "2021"
description = "Educational PE packer with Python bindings for malware detection training"
authors = ["AnnMargaret <annmargaret.mailforce@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/codeamt/pe-packer"
keywords = ["pe", "packer", "malware", "security", "education"]
categories = ["command-line-utilities", "security"]
[lib]
name = "pe_packer"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "pe-packer"
path = "src/bin/main.rs"
[dependencies]
goblin = "0.6"
rand = "0.8"
aes = "0.8"
cbc = "0.1"
sha2 = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.6"
log = "0.4"
anyhow = "1.0"
thiserror = "1.0"
env_logger = "0.11"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
hex = "0.4"
# Python bindings
pyo3 = { version = "0.20", features = ["extension-module", "abi3-py38"], optional = true }
numpy = { version = "0.20", optional = true }
[features]
default = []
python = ["pyo3", "numpy"]
cli = []