Skip to content

Commit e33e87f

Browse files
committed
add
1 parent 94fe293 commit e33e87f

File tree

2 files changed

+413
-0
lines changed

2 files changed

+413
-0
lines changed

Linux/obfsx/Cargo.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[package]
2+
name = "obfsx"
3+
version = "0.1.0"
4+
edition = "2024"
5+
license = "MIT"
6+
readme = "README.md"
7+
8+
description = "Obfuscate/Deobfuscate Magic Bytes"
9+
10+
[[bin]]
11+
name = "obfsx"
12+
path = "src/main.rs"
13+
14+
[dependencies]
15+
# Nothing for now
16+
17+
[profile.release]
18+
codegen-units = 1
19+
debug = false
20+
lto = true
21+
opt-level = 3
22+
panic = "abort"
23+
strip = true

0 commit comments

Comments
 (0)