42 lines
840 B
TOML
42 lines
840 B
TOML
[package]
|
|
name = "owlen-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Command-line interface for OWLEN LLM client"
|
|
|
|
[features]
|
|
default = ["chat-client"]
|
|
chat-client = []
|
|
code-client = []
|
|
|
|
[[bin]]
|
|
name = "owlen"
|
|
path = "src/main.rs"
|
|
required-features = ["chat-client"]
|
|
|
|
[[bin]]
|
|
name = "owlen-code"
|
|
path = "src/code_main.rs"
|
|
required-features = ["code-client"]
|
|
|
|
[dependencies]
|
|
owlen-core = { path = "../owlen-core" }
|
|
owlen-tui = { path = "../owlen-tui" }
|
|
owlen-ollama = { path = "../owlen-ollama" }
|
|
|
|
# CLI framework
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
|
|
# TUI framework
|
|
ratatui = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
|
|
# Utilities
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|