- Add cliff.toml for git-cliff changelog generation (one-line entries, no commit body dumps, improve/refine prefixes mapped) - Add @changesets/cli config and README in .changeset/ - Add release.sh script with per-package version bumps from changesets, changeset-driven per-crate changelog updates, and --all/--dry-run flags - Switch all crates from workspace version to independent version = "0.1.0" - Generate clean root CHANGELOG.md and per-crate CHANGELOGs with [0.1.0] - Retag v1.0.0 → v0.1.0 to match actual crate versions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
401 B
TOML
21 lines
401 B
TOML
[package]
|
|
name = "ds-stream"
|
|
version = "0.1.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]
|