-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
37 lines (34 loc) · 929 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
33
34
35
36
37
[package]
name = "rustclr"
version = "0.1.1"
edition = "2021"
description = "Host CLR and run .NET binaries using Rust"
license = "MIT"
repository = "https://github.com/joaoviictorti/rustclr"
homepage = "https://github.com/joaoviictorti/rustclr"
readme = "README.md"
keywords = ["dotnet", "clr", "windows", "rust", "redteam"]
categories = ["os", "filesystem", "api-bindings"]
exclude = [
".gitignore",
"cli/",
"target/",
"tests/",
]
[dependencies]
thiserror = "1.0.65"
windows-core = "0.58.0"
[dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_System_Com",
"Win32_System_Ole",
"Win32_System_Variant",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemInformation",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-gnu", "x86_64-pc-windows-msvc"]