22 lines
502 B
TOML
22 lines
502 B
TOML
[package]
|
|
name = "tb-ide"
|
|
description = "Terminal Basic: integrierte Entwicklungsumgebung im Terminal"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "tb"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tb-frontend.workspace = true
|
|
tb-vm.workspace = true
|
|
tb-runtime.workspace = true
|
|
tb-ui = { workspace = true, features = ["terminal"] }
|
|
ratatui.workspace = true
|
|
crossterm.workspace = true
|
|
anyhow.workspace = true
|
|
unicode-width.workspace = true
|