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)
17 lines
308 B
TOML
17 lines
308 B
TOML
[package]
|
|
name = "ds-stream-wasm"
|
|
version = "1.15.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "WebAssembly codec for DreamStack bitstream protocol"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
lto = true
|