Skip to content

Commit 648256e

Browse files
committed
Add binary target configuration to Cargo.toml
- Define binary executable named 'claudia' - Set main.rs as the binary entry point - Required for proper binary compilation in Rust projects
1 parent ccacc82 commit 648256e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src-tauri/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ edition = "2021"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

11+
[[bin]]
12+
name = "claudia"
13+
path = "src/main.rs"
14+
1115
[lib]
1216
name = "claudia_lib"
1317
crate-type = ["lib", "cdylib", "staticlib"]

0 commit comments

Comments
 (0)