File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " lucidshell"
3+ version = " 0.1.0"
4+ edition = " 2025"
5+ authors = [" CPScript" ]
6+ description = " White-Hat Security Shell with Sandboxing & Authorization"
7+ license = " GPL-3.0"
8+
9+ [dependencies ]
10+ clap = { version = " 4.5" , features = [" derive" ] }
11+ serde = { version = " 1.0" , features = [" derive" ] }
12+ serde_json = " 1.0"
13+ sha2 = " 0.10"
14+ chrono = { version = " 0.4" , features = [" serde" ] }
15+ uuid = { version = " 1.10" , features = [" v4" , " serde" ] }
16+ hex = " 0.4"
17+
18+ [target .'cfg(windows)' .dependencies ]
19+ winapi = { version = " 0.3" , features = [
20+ " jobapi2" ,
21+ " winnt" ,
22+ " handleapi" ,
23+ " processthreadsapi" ,
24+ " securitybaseapi" ,
25+ " tlhelp32" ,
26+ " synchapi" ,
27+ ] }
28+
29+ [profile .release ]
30+ opt-level = 3
31+ lto = true
32+ codegen-units = 1
33+ strip = false
34+ debug = false
35+
36+ [[bin ]]
37+ name = " lucidshell"
38+ path = " src/main.rs"
You can’t perform that action at this time.
0 commit comments