echo_execution 0.1.4

Execution layer for echo-agent framework (sandbox, skills, tools)
Documentation
[package]
name = "echo_execution"
version = "0.1.4"
edition = "2024"
rust-version = "1.85"
license = "MIT"
description = "Execution layer for echo-agent framework (sandbox, skills, tools)"
repository = "https://github.com/EchoYue-lp/echo-agent"
homepage = "https://github.com/EchoYue-lp/echo-agent"
documentation = "https://docs.rs/echo_execution"
keywords = ["ai", "agent", "sandbox", "tools"]
categories = ["api-bindings", "asynchronous"]
readme = "README.md"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

exclude = ["**/.DS_Store"]

[features]
default = ["files", "shell"]
files = ["echo_tools/files"]
shell = ["echo_tools/shell"]

[dependencies]
echo_core = { version = "0.1.4", path = "../echo-core" }
echo_tools = { version = "0.1.4", path = "../echo-tools", default-features = false }
# From echo-sandbox
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["process", "time", "macros", "rt", "io-util", "sync", "fs"] }
tracing = "0.1"
uuid = { version = "1", features = ["v4"] }
# From echo-skills
serde_yaml = "0.9"
regex = "1"
dirs = "6"
shlex = "1"
glob = "0.3"