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
52 changes: 21 additions & 31 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ rust-version = "1.91"
flate2 = "1.1"
hang = { version = "0.20", path = "rs/hang" }
kio = { version = "0.5", path = "rs/kio" }
moq-audio = { version = "0.0.13", path = "rs/moq-audio" }
moq-audio = { version = "0.0.14", path = "rs/moq-audio" }
moq-flate = { version = "0.1.1", path = "rs/moq-flate" }
moq-hls = { version = "0.4.2", path = "rs/moq-hls", default-features = false }
moq-json = { version = "0.3.1", path = "rs/moq-json" }
moq-hls = { version = "0.4.3", path = "rs/moq-hls", default-features = false }
moq-json = { version = "0.3.2", path = "rs/moq-json" }
moq-loc = { version = "0.2", path = "rs/moq-loc" }
moq-msf = { version = "0.4", path = "rs/moq-msf" }
moq-mux = { version = "0.9", path = "rs/moq-mux" }
Expand All @@ -91,8 +91,8 @@ moq-net = { version = "0.2", path = "rs/moq-net" }
moq-nvenc = { version = "0.0.3", path = "rs/moq-nvenc" }
moq-rtc = { version = "0.2.2", path = "rs/moq-rtc" }
moq-rtmp = { version = "0.2.2", path = "rs/moq-rtmp" }
moq-srt = { version = "0.2.2", path = "rs/moq-srt" }
moq-stats = { version = "0.1.2", path = "rs/moq-stats" }
moq-srt = { version = "0.2.3", path = "rs/moq-srt" }
moq-stats = { version = "0.1.3", path = "rs/moq-stats" }
moq-token = { version = "0.7", path = "rs/moq-token" }
# default-features off (the hardware codecs) on moq-transcode and moq-video so
# each consumer opts in: binaries (libmoq, moq-boy, moq-cli) enable them, but a
Expand Down
6 changes: 6 additions & 0 deletions rs/hang/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.20.2](https://github.com/moq-dev/moq/compare/hang-v0.20.1...hang-v0.20.2) - 2026-07-27

### Fixed

- *(hang)* reject a non-hex catalog description instead of misreading it ([#2516](https://github.com/moq-dev/moq/pull/2516))

## [0.20.1](https://github.com/moq-dev/moq/compare/hang-v0.20.0...hang-v0.20.1) - 2026-07-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion rs/hang/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.20.1"
version = "0.20.2"
edition = "2024"
rust-version.workspace = true

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

## [Unreleased]

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

### Added

- *(kio)* add a poll-native Deadline and adopt it in moq-net ([#2536](https://github.com/moq-dev/moq/pull/2536))

### Other

- *(net)* replace the global LRU cache pool with per-track write-time eviction ([#2526](https://github.com/moq-dev/moq/pull/2526))

## [0.5.0](https://github.com/moq-dev/moq/compare/kio-v0.4.4...kio-v0.5.0) - 2026-07-22

### 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.0"
version = "0.5.1"
edition = "2024"
rust-version.workspace = true

Expand Down
1 change: 0 additions & 1 deletion rs/kio/src/tokio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ use crate::Waiter;
/// [`poll`](Self::poll) it against a [`Waiter`] each time your `poll_*` runs. Reading the
/// clock through `tokio::time` means a `tokio::time::pause()` test advances it in step.
#[deprecated(note = "use kio::time::Deadline, which also works on wasm and can be re-armed in place")]
#[doc(hidden)]
pub struct Sleep {
inner: Pin<Box<::tokio::time::Sleep>>,
}
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.1](https://github.com/moq-dev/moq/compare/libmoq-v0.5.0...libmoq-v0.5.1) - 2026-07-27

### Other

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

## [0.5.0](https://github.com/moq-dev/moq/compare/libmoq-v0.4.2...libmoq-v0.5.0) - 2026-07-25

### Added
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.0"
version = "0.5.1"
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.14](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.13...moq-audio-v0.0.14) - 2026-07-27

### Added

- *(moq-audio)* play decoded PCM out a speaker ([#2529](https://github.com/moq-dev/moq/pull/2529))

## [0.0.13](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.12...moq-audio-v0.0.13) - 2026-07-25

### 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.13"
version = "0.0.14"
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.1](https://github.com/moq-dev/moq/compare/moq-boy-v0.4.0...moq-boy-v0.4.1) - 2026-07-27

### Other

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

## [0.4.0](https://github.com/moq-dev/moq/compare/moq-boy-v0.3.2...moq-boy-v0.4.0) - 2026-07-25

### 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.0"
version = "0.4.1"
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.4](https://github.com/moq-dev/moq/compare/moq-cli-v0.9.3...moq-cli-v0.9.4) - 2026-07-27

### Added

- *(cli)* add jemalloc heap profiling ([#2539](https://github.com/moq-dev/moq/pull/2539))

## [0.9.3](https://github.com/moq-dev/moq/compare/moq-cli-v0.9.2...moq-cli-v0.9.3) - 2026-07-25

### Other
Expand Down
2 changes: 1 addition & 1 deletion rs/moq-cli/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.9.3"
version = "0.9.4"
edition = "2024"
rust-version.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions rs/moq-ffi/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.3.4](https://github.com/moq-dev/moq/compare/moq-ffi-v0.3.3...moq-ffi-v0.3.4) - 2026-07-27

### Other

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

## [0.3.3](https://github.com/moq-dev/moq/compare/moq-ffi-v0.3.2...moq-ffi-v0.3.3) - 2026-07-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion rs/moq-ffi/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.3.3"
version = "0.3.4"
edition = "2024"

keywords = ["quic", "http3", "webtransport", "media", "live"]
Expand Down
6 changes: 6 additions & 0 deletions rs/moq-hls/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.3](https://github.com/moq-dev/moq/compare/moq-hls-v0.4.2...moq-hls-v0.4.3) - 2026-07-27

### Other

- updated the following local packages: kio

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

### Other
Expand Down
Loading
Loading