[package]
edition = "2024"
name = "ingestix"
version = "0.1.0-alpha"
authors = ["Magnus Karlsson <makarlsso@ioop.se"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Industrial-grade micro-framework for building high-throughput, observable data ingestion pipelines with zero boilerplate."
homepage = "https://ingestix.github.io"
documentation = "https://docs.rs/ingestix"
readme = "README.md"
keywords = [
"ingestion",
"metrics",
"tokio",
"observability",
"pipeline",
]
categories = [
"network-programming",
"asynchronous",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ingestix/ingestix"
resolver = "2"
[features]
default = [
"metrics",
"logging",
]
derive = ["dep:ingestix-derive"]
full = [
"derive",
"ingestors",
"metrics",
"logging",
]
ingestors = [
"dep:tokio-util",
"dep:futures",
]
logging = ["dep:tracing"]
metrics = [
"dep:metrics",
"dep:metrics-exporter-prometheus",
"dep:lazy_static",
]
[lib]
name = "ingestix"
path = "src/lib.rs"
[[test]]
name = "http_auth"
path = "tests/http_auth.rs"
[[test]]
name = "http_flow"
path = "tests/http_flow.rs"
[[test]]
name = "http_shutdown"
path = "tests/http_shutdown.rs"
[[test]]
name = "launch_shutdown"
path = "tests/launch_shutdown.rs"
[[test]]
name = "tcp_flow"
path = "tests/tcp_flow.rs"
[[test]]
name = "tcp_shutdown"
path = "tests/tcp_shutdown.rs"
[[test]]
name = "udp_flow"
path = "tests/udp_flow.rs"
[[test]]
name = "udp_shutdown"
path = "tests/udp_shutdown.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arc-swap]
version = "1.7"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.futures]
version = "0.3"
features = ["std"]
optional = true
default-features = false
[dependencies.ingestix-derive]
version = "0.1.0-alpha"
optional = true
[dependencies.lazy_static]
version = "1.4"
optional = true
[dependencies.metrics]
version = "0.24.3"
optional = true
[dependencies.metrics-exporter-prometheus]
version = "0.18.1"
optional = true
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.subtle]
version = "2.6"
[dependencies.tokio]
version = "1.36"
features = [
"full",
"signal",
"tracing",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
optional = true
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.serial_test]
version = "3"