Skip to content

Commit 77a5d08

Browse files
authored
Create Cargo.toml
1 parent 2260ae2 commit 77a5d08

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

core/Cargo.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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"

0 commit comments

Comments
 (0)