38 lines
824 B
TOML
38 lines
824 B
TOML
|
|
[package]
|
||
|
|
name = "codex-tui"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "codex-tui"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "codex_tui"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1"
|
||
|
|
clap = { version = "4", features = ["derive"] }
|
||
|
|
codex-ansi-escape = { path = "../ansi-escape" }
|
||
|
|
codex-core = { path = "../core", features = ["cli"] }
|
||
|
|
color-eyre = "0.6.3"
|
||
|
|
crossterm = "0.28.1"
|
||
|
|
ratatui = { version = "0.29.0", features = [
|
||
|
|
"unstable-widget-ref",
|
||
|
|
"unstable-rendered-line-info",
|
||
|
|
] }
|
||
|
|
shlex = "1.3.0"
|
||
|
|
tokio = { version = "1", features = [
|
||
|
|
"io-std",
|
||
|
|
"macros",
|
||
|
|
"process",
|
||
|
|
"rt-multi-thread",
|
||
|
|
"signal",
|
||
|
|
] }
|
||
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
||
|
|
tracing-appender = "0.2.3"
|
||
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||
|
|
tui-input = "0.11.1"
|
||
|
|
tui-textarea = "0.7.0"
|