2026-02-25 14:45:51 -08:00
|
|
|
[package]
|
|
|
|
|
name = "ds-stream-wasm"
|
feat(ds-stream): v2.0-2.3 composable codec pipeline
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)
2026-03-11 23:50:35 -07:00
|
|
|
version = "1.15.0"
|
2026-02-25 14:45:51 -08:00
|
|
|
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
|