forked from aspectron/winres-edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 829 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
[package]
name = "winres-edit"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/aspectron/winres-edit"
authors = ["Anton Yemelyanov <[email protected]>", "Surinder Singh Matoo Mattaur <[email protected]>"]
keywords = ["windows", "resources", "icon", "version"]
categories = ["encoding","os::windows-apis","parsing"]
description = """
Load, create and modify windows resources in existing executables (.exe or .res)
"""
[dependencies]
thiserror = "1.0.40"
manual-serializer = "0.1.0"
derivative = "2.2.0"
[dependencies.windows]
version = "0.43.0"
features = [
"Win32_Foundation",
"Win32_System_LibraryLoader",
"Win32_System_Diagnostics_Debug",
"Win32_System",
"Win32_Security",
"Win32_Graphics_Gdi",
"Win32_UI_WindowsAndMessaging",
]