v2.0 — Pipeline Architecture - Frame, CodecResult, Codec trait, Pipeline builder - 6 adapters: Passthrough, Dedup, Compress, Pacer, Slicer, Stats v2.1 — Multi-frame & new codecs - CodecOutput::Many fan-out, EncryptCodec, FilterCodec - Codec::reset(), encode_all/decode_all, real SlicerCodec chunking v2.2 — Observability & reassembly - PipelineResult (frames+errors+consumed), StageMetric - ReassemblyCodec, ConditionalCodec, Pipeline presets & metrics v2.3 — Integrity & rate control - ChecksumCodec (CRC32), RateLimitCodec (token bucket), TagCodec - Pipeline::chain(), Pipeline::describe() 13 codec adapters, 474 tests (all green, 0 regressions)
21 lines
401 B
TOML
21 lines
401 B
TOML
[package]
|
|
name = "ds-stream"
|
|
version = "2.3.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Universal bitstream streaming — any input to any output"
|
|
|
|
[[bin]]
|
|
name = "ds-stream-relay"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.24"
|
|
futures-util = "0.3"
|
|
serde_json = "1"
|
|
|
|
[dev-dependencies]
|