-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
60 lines (46 loc) · 1.53 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
authors = ["Christian Sdunek <[email protected]>"]
categories = [
"development-tools::build-utils",
"os::windows-apis",
"command-line-utilities",
"no-std",
]
keywords = ["parser", "resource", "windows", "pe", "coff"]
description = "Resource Editor for parsing and modification of Windows Portable Executables and their resources"
edition = "2021"
include = [
"Cargo.toml",
"src/**/*",
"LICENSE",
]
license = "BSD-2-Clause"
name = "editpe"
readme = "README.md"
repository = "https://github.com/Systemcluster/editpe"
version = "0.2.1"
[lib]
name = "editpe"
path = "src/lib.rs"
doctest = false
[features]
default = ["std", "images"]
# Enables standard library features, including reading and writing files.
std = ["dep:thiserror"]
# Enables processing images with the `image` crate. Also enables `std`.
images = ["std", "dep:image"]
[dependencies]
indexmap = { version = "2.6", default-features = false }
log = { version = "0.4.22" }
zerocopy = { version = "0.8.3", features = ["derive"] }
debug-ignore = { version = "1.0" }
ahash = { version = "0.8.11", default-features = false, features = ["compile-time-rng"] }
image = { version = "0.25.2", default-features = false, optional = true, features = ["ico"] }
thiserror = { version = "1.0", optional = true }
[dev-dependencies]
editpe = { path = ".", features = ["std", "images"] }
image = { version = "0.25.2", default-features = false, features = ["png"] }
env_logger = { version = "0.11.5" }
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true