[package]
edition = "2024"
name = "data-courier"
version = "0.1.0-beta.4"
authors = ["gbPagano <guilhermebpagano@gmail.com>"]
build = false
exclude = [
"/.github/",
"/docs/",
"/examples/",
"/CLAUDE.md",
"/zensical.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust framework for composable data pipelines"
homepage = "https://gbpagano.github.io/courier/"
documentation = "https://gbpagano.github.io/courier/"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/gbPagano/courier"
[lib]
name = "courier"
path = "src/lib.rs"
[[bin]]
name = "courier"
path = "src/main.rs"
[[test]]
name = "api_sink"
path = "tests/api_sink.rs"
[[test]]
name = "file_sink"
path = "tests/file_sink.rs"
[[test]]
name = "http_webhook"
path = "tests/http_webhook.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "privacy"
path = "tests/privacy.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "sql_connectors"
path = "tests/sql_connectors.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.axum]
version = "0.8.9"
features = [
"http1",
"tokio",
]
default-features = false
[dependencies.clap]
version = "4.5.57"
features = ["derive"]
[dependencies.futures]
version = "0.3.31"
[dependencies.log]
version = "0.4.28"
[dependencies.mlua]
version = "0.11.3"
features = [
"lua54",
"send",
"serialize",
"vendored",
]
[dependencies.opentelemetry]
version = "0.31.0"
features = [
"metrics",
"trace",
"logs",
]
[dependencies.opentelemetry-appender-tracing]
version = "0.31.1"
[dependencies.opentelemetry-otlp]
version = "0.31.1"
features = [
"grpc-tonic",
"metrics",
"trace",
"logs",
]
default-features = false
[dependencies.opentelemetry_sdk]
version = "0.31.0"
features = [
"rt-tokio",
"metrics",
"trace",
"logs",
]
[dependencies.rdkafka]
version = "0.38.0"
features = ["cmake-build"]
[dependencies.reqwest]
version = "0.12.23"
features = ["json"]
[dependencies.rhai]
version = "1.24.0"
features = [
"serde",
"sync",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sqlx]
version = "0.8.6"
features = [
"runtime-tokio-rustls",
"postgres",
"sqlite",
"json",
"chrono",
]
default-features = false
[dependencies.tokio]
version = "1.47.1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.12"
[dependencies.toml]
version = "0.9.8"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-log]
version = "0.2.0"
[dependencies.tracing-opentelemetry]
version = "0.32.0"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = [
"env-filter",
"json",
]
[dev-dependencies.opentelemetry_sdk]
version = "0.31.0"
features = ["testing"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers-modules]
version = "0.15.0"
features = [
"kafka",
"postgres",
]
[dev-dependencies.wiremock]
version = "0.6.5"