[package]
edition = "2024"
rust-version = "1.96.0"
name = "reinhardt-streaming"
version = "0.3.2"
authors = ["kent8192 <51869472+kent8192@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend-agnostic streaming abstraction with Kafka support"
readme = false
license = "BSD-3-Clause"
repository = "https://github.com/kent8192/reinhardt-web"
[features]
default = []
full = ["kafka"]
kafka = [
"dep:rskafka",
"dep:chrono",
]
[lib]
name = "reinhardt_streaming"
path = "src/lib.rs"
[[test]]
name = "kafka_error_paths"
path = "tests/kafka_error_paths.rs"
[[test]]
name = "kafka_integration"
path = "tests/kafka_integration.rs"
[[test]]
name = "producer_macro"
path = "tests/producer_macro.rs"
[[test]]
name = "streaming_e2e"
path = "tests/streaming_e2e.rs"
[[test]]
name = "streaming_patterns_typed"
path = "tests/streaming_patterns_typed.rs"
[[test]]
name = "streaming_routes_macro"
path = "tests/streaming_routes_macro.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
optional = true
[dependencies.inventory]
version = "0.3"
[dependencies.rskafka]
version = "0.5"
features = ["rustls"]
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.51.0"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
"net",
"io-util",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.uuid]
version = "1.23.0"
features = [
"v4",
"v5",
"v7",
"serde",
]
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.serde]
version = "1.0.228"
features = [
"derive",
"derive",
]
[dev-dependencies.tokio]
version = "1.51.0"
features = [
"rt-multi-thread",
"sync",
"time",
"macros",
"net",
"io-util",
"full",
]