spate-test 0.1.0

Testing utilities for the Spate framework: in-memory sources and sinks with scripting handles for exercising pipelines without external infrastructure.
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 = "spate-test"
version = "0.1.0"
authors = ["Marcus Kainth <marcus@kainth.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testing utilities for the Spate framework: in-memory sources and sinks with scripting handles for exercising pipelines without external infrastructure."
homepage = "https://spate.kainth.dev"
readme = "README.md"
keywords = [
    "etl",
    "pipeline",
    "streaming",
    "kafka",
    "clickhouse",
]
categories = [
    "asynchronous",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/spate-etl/spate"

[features]
default = []
proptest = ["dep:proptest"]

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

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

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

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

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

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

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

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

[dependencies.bytes]
version = "1.11.1"

[dependencies.crossbeam-channel]
version = "0.5.15"

[dependencies.proptest]
version = "1.11"
optional = true

[dependencies.spate-core]
version = "=0.1.0"

[dependencies.tokio]
version = "1.52"
features = ["time"]
default-features = false

[dev-dependencies.tokio]
version = "1.52"
features = [
    "macros",
    "rt",
    "test-util",
    "time",
]
default-features = false

[lints.clippy]
dbg_macro = "warn"
print_stderr = "warn"
print_stdout = "warn"
undocumented_unsafe_blocks = "warn"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]