strev 0.6.0

Event-driven pub/sub messaging library with compile-time ack safety
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"
name = "strev"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-driven pub/sub messaging library with compile-time ack safety"
readme = "README.md"
keywords = [
    "messaging",
    "pubsub",
    "event-driven",
    "async",
]
categories = [
    "asynchronous",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/guiaramos/strev"
resolver = "2"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.async-trait]
version = "0.1"

[dependencies.bytes]
version = "1"

[dependencies.futures]
version = "0.3"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

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

[dependencies.tokio-stream]
version = "0.1"

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = ["v4"]

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

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

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

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

[dev-dependencies.tokio-stream]
version = "0.1"

[dev-dependencies.tokio-util]
version = "0.7"