mirror of
https://github.com/khodges42/exoshell.git
synced 2026-06-14 18:08:37 +00:00
Added /keys and /help keys through src/keybindings.rs, wired into src/app.rs and src/repl.rs. It documents key actions and explicit slash-command fallbacks for copy, explain, discard, context, and stance without adding a premature TUI dependency.
19 lines
459 B
TOML
19 lines
459 B
TOML
[package]
|
|
name = "exoshell"
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
futures-util = "0.3"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
|
|
toml = "0.9"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|