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
86 changes: 43 additions & 43 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ kio = { version = "0.5", path = "rs/kio" }
loom = { version = "0.7.2", features = ["futures"] }
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.4", path = "rs/moq-hls", default-features = false }
moq-json = { version = "0.3.2", path = "rs/moq-json" }
moq-hls = { version = "0.4.5", path = "rs/moq-hls", default-features = false }
moq-json = { version = "0.3.3", 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 @@ -93,20 +93,20 @@ moq-net = { version = "0.2", path = "rs/moq-net" }
# used by moq-video on Linux.
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-rtmp = { version = "0.2.3", path = "rs/moq-rtmp" }
moq-srt = { version = "0.2.3", path = "rs/moq-srt" }
moq-stats = { version = "0.1.3", path = "rs/moq-stats" }
moq-stats = { version = "0.1.4", path = "rs/moq-stats" }
moq-token = { version = "0.7", path = "rs/moq-token" }
moq-token-cli = { version = "0.5", path = "rs/moq-token-cli" }
# 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
# 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.6", path = "rs/moq-transcode", default-features = false }
moq-transcode = { version = "0.0.7", 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.12", path = "rs/moq-video", default-features = false }
moq-video = { version = "0.0.13", path = "rs/moq-video", default-features = false }
percent-encoding = "2"
qmux = { version = "0.4.0", default-features = false }
serde = { version = "1", features = ["derive"] }
Expand Down
10 changes: 10 additions & 0 deletions rs/hang/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.20.3](https://github.com/moq-dev/moq/compare/hang-v0.20.2...hang-v0.20.3) - 2026-08-05

### Fixed

- *(hang)* reverse bits, not bytes, in the HEVC codec string ([#2658](https://github.com/moq-dev/moq/pull/2658))

### Other

- *(rs)* clean up pedantic clippy warnings ([#2621](https://github.com/moq-dev/moq/pull/2621))

## [0.20.2](https://github.com/moq-dev/moq/compare/hang-v0.20.1...hang-v0.20.2) - 2026-07-27

### Fixed
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.2"
version = "0.20.3"
edition = "2024"
rust-version.workspace = true

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.4](https://github.com/moq-dev/moq/compare/kio-v0.5.3...kio-v0.5.4) - 2026-08-05

### Added

- *(kio)* add Fan, a waker for a whole WaiterList ([#2604](https://github.com/moq-dev/moq/pull/2604))

## [0.5.3](https://github.com/moq-dev/moq/compare/kio-v0.5.2...kio-v0.5.3) - 2026-08-03

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

Expand Down
Loading
Loading