-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (33 loc) · 1.24 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
[package]
name = "powershell-pro-obfuscator"
version = "1.0.0"
edition = "2021"
rust-version = "1.70"
license = "Apache-2.0"
description = "PowerShell Pro Obfuscator Web API interface can help you obfuscate, virtualize and protect PowerShell .ps1 scripts against analysis, reverse engineering and technology theft. PowerShell Pro Obfuscator provides advanced PowerShell source code parsing based on AST trees, multiple advanced obfuscation, virtualization and protection strategies are available."
authors = ["Bartosz Wójcik <support@pelock.com>"]
readme = "README.md"
repository = "https://github.com/PELock/PowerShell-Pro-Obfuscator-Rust"
homepage = "https://www.pelock.com/products/powershell-pro-obfuscator"
documentation = "https://docs.rs/powershell-pro-obfuscator"
keywords = [
"powershell",
"obfuscator",
"obfuscation",
"virtualization",
"protection"
]
categories = ["api-bindings"]
[dependencies]
base64 = "0.22"
flate2 = "1.0"
reqwest = { version = "0.12", default-features = false, features = [
"multipart",
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }
[package.metadata.docs.rs]
all-features = true