[package]
edition = "2021"
name = "noetl-executor"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NoETL shared execution core — utilities and types shared between the noetl CLI's local-mode runner and the noetl-worker NATS pull consumer."
homepage = "https://noetl.io"
readme = "README.md"
keywords = [
"noetl",
"etl",
"workflow",
"automation",
"executor",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/noetl/cli"
[lib]
name = "noetl_executor"
path = "src/lib.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "gcs_upload"
path = "tests/gcs_upload.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.noetl-events]
version = "0.1.0"
[dependencies.noetl-tools]
version = "3"
[dependencies.object_store]
version = "0.11"
features = ["gcp"]
[dependencies.regex]
version = "1.10"
[dependencies.rhai]
version = "1.18"
features = ["sync"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"test-util",
]