Phase 6: Native Executables implementieren und Change archivieren

This commit is contained in:
2026-09-07 14:16:32 +02:00
parent 993c3e7638
commit 60d37ec79d
28 changed files with 1951 additions and 215 deletions

View File

@@ -11,6 +11,8 @@ name = "tbc"
path = "src/main.rs"
[dependencies]
tb-runner.workspace = true
tb-export.workspace = true
tb-frontend.workspace = true
tb-vm.workspace = true
tb-runtime.workspace = true
@@ -21,3 +23,9 @@ anyhow.workspace = true
tb-ide = { path = "../tb-ide" }
crossterm.workspace = true
ratatui.workspace = true
[target.'cfg(unix)'.dependencies]
signal-hook.workspace = true
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_Console"] }