Files
TerminalBasic/Cargo.toml
Chili Palmer 6e742d96b1
Some checks failed
Release-Build und Pflichtabnahme / checks (push) Successful in 5m58s
Release-Build und Pflichtabnahme / build (ghcr.io/rust-cross/cargo-zigbuild@sha256:82af75c41958c2af2787e8bedd912da7678a9438937e223e9d83d006d747b38b, aarch64-apple-darwin) (push) Successful in 3m36s
Release-Build und Pflichtabnahme / build (ghcr.io/rust-cross/cargo-zigbuild@sha256:82af75c41958c2af2787e8bedd912da7678a9438937e223e9d83d006d747b38b, aarch64-unknown-linux-gnu) (push) Successful in 3m27s
Release-Build und Pflichtabnahme / build (ghcr.io/rust-cross/cargo-zigbuild@sha256:82af75c41958c2af2787e8bedd912da7678a9438937e223e9d83d006d747b38b, x86_64-unknown-linux-gnu) (push) Successful in 3m33s
Release-Build und Pflichtabnahme / build (messense/cargo-xwin@sha256:4696dd4e79edf8569fa99c4b06bd99273e0501c7adc983aa61d57945f795bef0, x86_64-pc-windows-msvc) (push) Successful in 6m14s
Release-Build und Pflichtabnahme / stage (push) Failing after 1m16s
Release 1.0.0: Builds ausschließlich für Release-Tags
2026-09-08 06:48:14 +02:00

51 lines
1.0 KiB
TOML

[workspace]
resolver = "2"
members = [
"crates/tb-frontend",
"crates/tb-vm",
"crates/tb-runtime",
"crates/tb-ui",
"crates/tb-cli",
"crates/tb-ide",
"crates/tb-runner",
"crates/tb-export",
]
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "MIT"
repository = ""
authors = ["Georg Bauer"]
[workspace.dependencies]
# UI / Terminal
ratatui = "0.29"
crossterm = "0.28"
# Betriebssystemsignale als Ereignisquelle (SIGNAL, design.md D8).
# Liegt ohnehin im Baum: crossterm nutzt es unter Unix fuer SIGWINCH.
signal-hook = "0.3"
# Text und Zeit
unicode-width = "0.2"
# Nur fuer den UTC-Versatz zu einem Zeitpunkt (siehe design.md, D1/D2).
jiff = "0.2"
# Allgemein
anyhow = "1"
thiserror = "2"
log = "0.4"
# Interne Crates
tb-frontend = { path = "crates/tb-frontend" }
tb-vm = { path = "crates/tb-vm" }
tb-runner = { path = "crates/tb-runner" }
tb-export = { path = "crates/tb-export" }
tb-runtime = { path = "crates/tb-runtime" }
tb-ui = { path = "crates/tb-ui" }
[profile.release]
lto = true
codegen-units = 1