[package]
edition = "2021"
name = "elizaos-plugin-shell"
version = "2.0.0"
authors = ["elizaOS Contributors"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "elizaOS Shell Plugin - Shell command execution with directory restrictions and history tracking"
homepage = "https://elizaos.ai"
documentation = "https://docs.rs/elizaos-plugin-shell"
readme = "README.md"
keywords = [
"ai",
"shell",
"terminal",
"command",
"elizaos",
]
categories = [
"command-line-utilities",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/elizaos/eliza"
[features]
default = ["native"]
native = ["tokio/full"]
[lib]
name = "elizaos_plugin_shell"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.42"
features = [
"rt",
"macros",
"process",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.42"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio-test]
version = "0.4"
[profile.release]
opt-level = "z"
lto = true