31 lines
865 B
TOML
31 lines
865 B
TOML
[package]
|
|
name = "tui"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "insomnia"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
client = { workspace = true }
|
|
protocol = { workspace = true }
|
|
ratatui = { version = "0.30.0", features = ["scrolling-regions"] }
|
|
crossterm = "0.28"
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "process"] }
|
|
serde_json = { workspace = true }
|
|
unicode-width = "0.2.2"
|
|
uuid = { workspace = true }
|
|
toml = { workspace = true }
|
|
manifest = { workspace = true }
|
|
session-store = { workspace = true }
|
|
pod-registry = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
pulldown-cmark = { version = "0.13.3", default-features = false }
|
|
llm-worker.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
tools = { workspace = true }
|