treeScannerRust/.cargo/config.toml
Adam Skotarczak e13e60193c initial committed - Portierung CLI TreeScanner von Python nach Rust
- Projektvorlage für TreeScanner.exe angelegt
- Metadaten und Icon werden in .exe Compiliert
2025-05-16 11:50:54 +02:00

16 lines
725 B
TOML

[build]
# Zielplattform für das Kompilieren angeben
# Hier wird explizit die MSVC-Version für Windows 64-bit verwendet
target = "x86_64-pc-windows-msvc"
target-dir = "./target"
#| Ziel | Beschreibung |
#| -------------------------- | --------------------------------- |
#| `x86_64-pc-windows-gnu` | Windows mit MinGW (GNU Toolchain) |
#| `x86_64-unknown-linux-gnu` | Linux x64 |
#| `x86_64-apple-darwin` | macOS Intel |
#| `aarch64-pc-windows-msvc` | Windows auf ARM64 |
#| `wasm32-unknown-unknown` | WebAssembly ohne Bindings |
#| `wasm32-wasi` | WebAssembly mit WASI |