Skip to content

Commit 420f2cf

Browse files
authored
Create Cargo.toml
1 parent 4ad2fc5 commit 420f2cf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

core/plugins/devtools/Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[package]
2+
name = "lucidshell-devtools"
3+
version = "1.0.0"
4+
edition = "2025"
5+
authors = ["CPScript"]
6+
description = "Development tools plugin for LucidShell with controlled network access"
7+
8+
[[bin]]
9+
name = "devtools"
10+
path = "src/main.rs"
11+
12+
[dependencies]
13+
# No external dependencies :P
14+
15+
[profile.release]
16+
strip = true
17+
opt-level = "z"
18+
lto = true
19+
codegen-units = 1
20+
panic = "abort"

0 commit comments

Comments
 (0)