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
12 changes: 6 additions & 6 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 @@ -17,12 +17,12 @@ members = [
[workspace.dependencies]
imgproc = { version = "0.3.14", path = "imgproc" }
yuv-sys = { version = "0.3.9", path = "yuv-sys" }
libwebrtc = { version = "0.3.16", path = "libwebrtc" }
livekit-api = { version = "0.4.7", path = "livekit-api" }
livekit-ffi = { version = "0.12.35", path = "livekit-ffi" }
libwebrtc = { version = "0.3.17", path = "libwebrtc" }
livekit-api = { version = "0.4.8", path = "livekit-api" }
livekit-ffi = { version = "0.12.36", path = "livekit-ffi" }
livekit-protocol = { version = "0.5.0", path = "livekit-protocol" }
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
livekit = { version = "0.7.20", path = "livekit" }
livekit = { version = "0.7.21", path = "livekit" }
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
webrtc-sys-build = { version = "0.3.8", path = "webrtc-sys/build" }
webrtc-sys = { version = "0.3.13", path = "webrtc-sys" }
webrtc-sys-build = { version = "0.3.9", path = "webrtc-sys/build" }
webrtc-sys = { version = "0.3.14", path = "webrtc-sys" }
10 changes: 10 additions & 0 deletions libwebrtc/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.3.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Added

- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))

### Other

- Enable buffer scaling ([#473](https://github.com/livekit/rust-sdks/pull/473))

## [0.3.16](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion libwebrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libwebrtc"
version = "0.3.16"
version = "0.3.17"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions livekit-api/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.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Other

- Bump reqwest to 0.12 ([#711](https://github.com/livekit/rust-sdks/pull/711))

## [0.4.7](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-09-29

### Other
Expand Down
2 changes: 1 addition & 1 deletion livekit-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-api"
version = "0.4.7"
version = "0.4.8"
license = "Apache-2.0"
description = "Rust Server SDK for LiveKit"
edition = "2021"
Expand Down
20 changes: 20 additions & 0 deletions livekit-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.36](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Added

- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))

### Fixed

- fix some potential audio issues, clean up the code a bit, and suppress some warnings ([#737](https://github.com/livekit/rust-sdks/pull/737))
- do not log 'signal client closed: "stream closed"' on disconnect ([#727](https://github.com/livekit/rust-sdks/pull/727))

### Other

- Upgrade prost, use prost-build (FFI only) ([#734](https://github.com/livekit/rust-sdks/pull/734))
- Test participant disconnect ([#732](https://github.com/livekit/rust-sdks/pull/732))
- Increase RPC max RT time to 7s ([#729](https://github.com/livekit/rust-sdks/pull/729))
- E2E audio test ([#724](https://github.com/livekit/rust-sdks/pull/724))
- bump libwebrtc libs version for webrtc-sys. ([#741](https://github.com/livekit/rust-sdks/pull/741))
- Bump reqwest to 0.12 ([#711](https://github.com/livekit/rust-sdks/pull/711))

## [0.12.35](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-ffi"
version = "0.12.35"
version = "0.12.36"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
Expand Down
17 changes: 17 additions & 0 deletions livekit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Added

- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))

### Fixed

- fix some potential audio issues, clean up the code a bit, and suppress some warnings ([#737](https://github.com/livekit/rust-sdks/pull/737))
- do not log 'signal client closed: "stream closed"' on disconnect ([#727](https://github.com/livekit/rust-sdks/pull/727))

### Other

- Test participant disconnect ([#732](https://github.com/livekit/rust-sdks/pull/732))
- Increase RPC max RT time to 7s ([#729](https://github.com/livekit/rust-sdks/pull/729))
- E2E audio test ([#724](https://github.com/livekit/rust-sdks/pull/724))

## [0.7.20](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion livekit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit"
version = "0.7.20"
version = "0.7.21"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand Down
17 changes: 17 additions & 0 deletions webrtc-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Added

- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))

### Fixed

- fix some potential audio issues, clean up the code a bit, and suppress some warnings ([#737](https://github.com/livekit/rust-sdks/pull/737))
- fix linux so link issue. ([#733](https://github.com/livekit/rust-sdks/pull/733))
- change search_dirs to use cc --print-search-dirs instead of clang --print-search-dirs ([#697](https://github.com/livekit/rust-sdks/pull/697))

### Other

- bump libwebrtc libs version for webrtc-sys. ([#741](https://github.com/livekit/rust-sdks/pull/741))
- Enable buffer scaling ([#473](https://github.com/livekit/rust-sdks/pull/473))

## [0.3.13](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion webrtc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sys"
version = "0.3.13"
version = "0.3.14"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions webrtc-sys/build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.9](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13

### Other

- bump libwebrtc libs version for webrtc-sys. ([#741](https://github.com/livekit/rust-sdks/pull/741))
- Bump reqwest to 0.12 ([#711](https://github.com/livekit/rust-sdks/pull/711))

## [0.3.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-09-29

### Other
Expand Down
2 changes: 1 addition & 1 deletion webrtc-sys/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sys-build"
version = "0.3.8"
version = "0.3.9"
edition = "2021"
license = "Apache-2.0"
description = "Build utilities when working with libwebrtc"
Expand Down