ironflow-runtime 1.2.0

Runtime daemon for ironflow: webhooks (axum) and cron scheduling
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"
rust-version = "1.94"
name = "ironflow-runtime"
version = "1.2.0"
authors = ["Thomas Tartrau"]
build = false
exclude = [
    ".gitlab-ci.yml",
    ".releaserc.json",
    "release.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime daemon for ironflow: webhooks (axum) and cron scheduling"
readme = false
keywords = [
    "workflow",
    "webhook",
    "cron",
    "runtime",
    "axum",
]
categories = [
    "asynchronous",
    "web-programming::http-server",
    "development-tools",
]
license = "MIT"
repository = "https://gitlab.com/ThomasTartrau/ironflow"
resolver = "2"

[features]
default = []
prometheus = [
    "metrics",
    "metrics-exporter-prometheus",
    "ironflow-core/prometheus",
]

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

[[example]]
name = "daemon"
path = "examples/daemon.rs"

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

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

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

[dependencies.axum]
version = "0.8"

[dependencies.dotenvy]
version = "0.15"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.ironflow-core]
version = "1.2.0"

[dependencies.metrics]
version = "0.24"
optional = true

[dependencies.metrics-exporter-prometheus]
version = "0.18"
optional = true
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "signal",
]

[dependencies.tokio-cron-scheduler]
version = "0.15"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.axum]
version = "0.8"

[dev-dependencies.metrics]
version = "0.24"

[dev-dependencies.metrics-exporter-prometheus]
version = "0.18"
default-features = false

[dev-dependencies.reqwest]
version = "0.13"
features = ["json"]

[dev-dependencies.serde_json]
version = "1"

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

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