[package]
edition = "2024"
rust-version = "1.85"
name = "lash-tool-shell"
version = "0.1.0-alpha.37"
authors = ["Samuel Galanakis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shell-execution tool for the lash agent runtime."
homepage = "https://samgalanakis.github.io/lash/"
documentation = "https://samgalanakis.github.io/lash/"
readme = "README.md"
keywords = [
"lash",
"agent",
"tools",
"shell",
"llm",
]
categories = [
"asynchronous",
"command-line-interface",
]
license = "MIT"
repository = "https://github.com/SamGalanakis/lash"
[lib]
name = "lash_tool_shell"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.lash-core]
version = "=0.1.0-alpha.37"
[dependencies.lash-tool-support]
version = "=0.1.0-alpha.37"
[dependencies.libc]
version = "0.2"
[dependencies.portable-pty]
version = "0.9"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"process",
"io-util",
"sync",
"time",
"rt",
"rt-multi-thread",
"macros",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dev-dependencies.lash-core]
version = "=0.1.0-alpha.37"
features = ["testing"]