Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 39 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ kio = { version = "0.5", path = "rs/kio" }
# Permutation testing for the kio primitives (and everything built on them).
# Only compiled under `--cfg loom`; see `just rs loom`.
loom = { version = "0.7.2", features = ["futures"] }
moq-audio = { version = "0.0.14", path = "rs/moq-audio" }
moq-audio = { version = "0.0.15", path = "rs/moq-audio" }
moq-flate = { version = "0.1.1", path = "rs/moq-flate" }
moq-hls = { version = "0.4.3", path = "rs/moq-hls", default-features = false }
moq-json = { version = "0.3.2", path = "rs/moq-json" }
Expand All @@ -101,11 +101,11 @@ moq-token = { version = "0.7", path = "rs/moq-token" }
# each consumer opts in: binaries (libmoq, moq-boy, moq-cli) enable them, but a
# self-compiler can leave them off to drop the CUDA / libva deps. Both crates
# still default them on when depended on directly.
moq-transcode = { version = "0.0.4", path = "rs/moq-transcode", default-features = false }
moq-transcode = { version = "0.0.5", path = "rs/moq-transcode", default-features = false }
# Standalone crate (moq-dev/vaapi); vendored from cros-libva + cros-codecs.
# dlopen's libva at runtime (no libva-dev at build, no NEEDED libva in the binary).
moq-vaapi = "0.0.3"
moq-video = { version = "0.0.10", path = "rs/moq-video", default-features = false }
moq-video = { version = "0.0.11", path = "rs/moq-video", default-features = false }
qmux = { version = "0.4.0", default-features = false }
serde = { version = "1", features = ["derive"] }
tokio = "1.48"
Expand Down
6 changes: 6 additions & 0 deletions rs/kio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2](https://github.com/moq-dev/moq/compare/kio-v0.5.1...kio-v0.5.2) - 2026-07-29

### Other

- *(kio,net)* model-check the concurrent handoffs with loom ([#2543](https://github.com/moq-dev/moq/pull/2543))

## [0.5.1](https://github.com/moq-dev/moq/compare/kio-v0.5.0...kio-v0.5.1) - 2026-07-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion rs/kio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley"]
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"

version = "0.5.1"
version = "0.5.2"
edition = "2024"
rust-version.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions rs/libmoq/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2](https://github.com/moq-dev/moq/compare/libmoq-v0.5.1...libmoq-v0.5.2) - 2026-07-29

### Other

- updated the following local packages: moq-audio, moq-video

## [0.5.1](https://github.com/moq-dev/moq/compare/libmoq-v0.5.0...libmoq-v0.5.1) - 2026-07-27

### Other
Expand Down
2 changes: 1 addition & 1 deletion rs/libmoq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>", "Brian Medley <bpm@bmedley.org>"
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"

version = "0.5.1"
version = "0.5.2"
edition = "2024"
rust-version.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions rs/moq-audio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.15](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.14...moq-audio-v0.0.15) - 2026-07-29

### Added

- *(moq-audio)* cancel the speaker's echo out of the microphone ([#2538](https://github.com/moq-dev/moq/pull/2538))

## [0.0.14](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.13...moq-audio-v0.0.14) - 2026-07-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion rs/moq-audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>"]
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"

version = "0.0.14"
version = "0.0.15"
edition = "2024"
rust-version.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions rs/moq-boy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/moq-dev/moq/compare/moq-boy-v0.4.1...moq-boy-v0.4.2) - 2026-07-29

### Fixed

- *(moq-boy,moq-native)* dial the relay via --client-connect again ([#2551](https://github.com/moq-dev/moq/pull/2551))

## [0.4.1](https://github.com/moq-dev/moq/compare/moq-boy-v0.4.0...moq-boy-v0.4.1) - 2026-07-27

### Other
Expand Down
2 changes: 1 addition & 1 deletion rs/moq-boy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
keywords = ["moq", "gameboy", "streaming", "emulator", "live"]
categories = ["multimedia::video", "emulators", "network-programming"]

version = "0.4.1"
version = "0.4.2"
edition = "2024"
rust-version.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions rs/moq-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.5](https://github.com/moq-dev/moq/compare/moq-cli-v0.9.4...moq-cli-v0.9.5) - 2026-07-29

### Added

- *(net)* fail over across redundant publishers via per-peer route selection ([#2473](https://github.com/moq-dev/moq/pull/2473))

## [0.9.4](https://github.com/moq-dev/moq/compare/moq-cli-v0.9.3...moq-cli-v0.9.4) - 2026-07-27

### Added
Expand Down
Loading
Loading