[package]
edition = "2024"
name = "camel-component-exec"
version = "0.23.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fail-closed system command execution component for rust-camel"
homepage = "https://github.com/kennycallado/rust-camel"
readme = "README.md"
keywords = [
"camel",
"integration",
"messaging",
"routing",
"enterprise",
]
categories = [
"network-programming",
"asynchronous",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/kennycallado/rust-camel"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "camel_component_exec"
path = "src/lib.rs"
[[test]]
name = "boundary"
path = "tests/boundary.rs"
[[test]]
name = "exec_integration"
path = "tests/exec_integration.rs"
[[test]]
name = "exec_producer"
path = "tests/exec_producer.rs"
[[test]]
name = "process_kill"
path = "tests/process_kill.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.camel-api]
version = "=0.23.0"
[dependencies.camel-component-api]
version = "=0.23.0"
[dependencies.glob]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"process",
"rt",
"macros",
"time",
"io-util",
"sync",
]
[dependencies.toml]
version = "1"
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.camel-builder]
version = "=0.23.0"
[dev-dependencies.camel-component-api]
version = "=0.23.0"
features = ["test-support"]
[dev-dependencies.camel-core]
version = "=0.23.0"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"full",
"test-util",
]
[dev-dependencies.tracing-test]
version = "0.2"
features = ["no-env-filter"]
[lints.clippy]
all = "warn"
[lints.rust]
dead_code = "warn"
unused_imports = "warn"
unused_must_use = "warn"