agent-exec 0.1.17

Non-interactive agent job runner. Runs commands as background jobs and returns structured JSON on stdout.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "agent-exec"
version = "0.1.17"
authors = ["tumf <tumf@users.noreply.github.com>"]
build = "build.rs"
include = [
    "/src/**",
    "/skills/**",
    "/schema/**",
    "/tests/**",
    "/build.rs",
    "/Cargo.toml",
    "/README.md",
    "/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Non-interactive agent job runner. Runs commands as background jobs and returns structured JSON on stdout."
homepage = "https://github.com/tumf/agent-exec"
documentation = "https://docs.rs/agent-exec"
readme = "README.md"
keywords = [
    "agent",
    "job",
    "runner",
    "cli",
    "json",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/tumf/agent-exec"

[lib]
name = "agent_exec"
path = "src/lib.rs"

[[bin]]
name = "agent-exec"
path = "src/main.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "serve_integration"
path = "tests/serve_integration.rs"

[dependencies.anyhow]
version = "1"

[dependencies.axum]
version = "0.8"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.clap_complete]
version = "4"
features = ["unstable-dynamic"]

[dependencies.directories]
version = "5"

[dependencies.libc]
version = "0.2"

[dependencies.regex]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tempfile]
version = "3"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "0.8"
features = ["parse"]
default-features = false

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.ulid]
version = "1"

[dev-dependencies.serde_yaml]
version = "0.9"

[dev-dependencies.tempfile]
version = "3"

[target."cfg(windows)".dependencies.windows]
version = "0.58"
features = [
    "Win32_Foundation",
    "Win32_System_JobObjects",
    "Win32_System_Threading",
    "Win32_System_Diagnostics_ToolHelp",
]