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

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ members = [

[workspace.dependencies]
imgproc = { version = "0.3.15", path = "imgproc" }
libwebrtc = { version = "0.3.20", path = "libwebrtc" }
livekit = { version = "0.7.25", path = "livekit" }
livekit-api = { version = "0.4.10", path = "livekit-api" }
livekit-ffi = { version = "0.12.40", path = "livekit-ffi" }
livekit-protocol = { version = "0.5.2", path = "livekit-protocol" }
libwebrtc = { version = "0.3.21", path = "libwebrtc" }
livekit = { version = "0.7.26", path = "livekit" }
livekit-api = { version = "0.4.11", path = "livekit-api" }
livekit-ffi = { version = "0.12.41", path = "livekit-ffi" }
livekit-protocol = { version = "0.6.0", path = "livekit-protocol" }
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
soxr-sys = { version = "0.1.1", path = "soxr-sys" }
webrtc-sys = { version = "0.3.17", path = "webrtc-sys" }
webrtc-sys-build = { version = "0.3.11", path = "webrtc-sys/build" }
webrtc-sys = { version = "0.3.18", path = "webrtc-sys" }
webrtc-sys-build = { version = "0.3.12", path = "webrtc-sys/build" }
yuv-sys = { version = "0.3.10", path = "yuv-sys" }
7 changes: 7 additions & 0 deletions libwebrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Other

- move starting/stopping GLib event loop into libwebrtc crate ([#798](https://github.com/livekit/rust-sdks/pull/798))
- Expose desktop capturer ([#725](https://github.com/livekit/rust-sdks/pull/725))

## [0.3.20](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

### 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.20"
version = "0.3.21"
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.11](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added

- *(connector)* initial service impl ([#790](https://github.com/livekit/rust-sdks/pull/790))

## [0.4.10](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

### Added
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.10"
version = "0.4.11"
license = "Apache-2.0"
description = "Rust Server SDK for LiveKit"
edition = "2021"
Expand Down
15 changes: 15 additions & 0 deletions livekit-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.41](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added

- *(connector)* initial service impl ([#790](https://github.com/livekit/rust-sdks/pull/790))

### Fixed

- fix mute/unmute events for LocalTrack. ([#799](https://github.com/livekit/rust-sdks/pull/799))

### Other

- Add RoomEvent::TokenRefreshed ([#803](https://github.com/livekit/rust-sdks/pull/803))
- Expose desktop capturer ([#725](https://github.com/livekit/rust-sdks/pull/725))

## [0.12.40](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

### 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.40"
version = "0.12.41"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
Expand Down
6 changes: 6 additions & 0 deletions livekit-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.6.0](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added

- *(connector)* initial service impl ([#790](https://github.com/livekit/rust-sdks/pull/790))

## [0.5.2](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

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

## [Unreleased]

## [0.7.26](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added

- *(connector)* initial service impl ([#790](https://github.com/livekit/rust-sdks/pull/790))

### Fixed

- fix mute/unmute events for LocalTrack. ([#799](https://github.com/livekit/rust-sdks/pull/799))

### Other

- Add RoomEvent::TokenRefreshed ([#803](https://github.com/livekit/rust-sdks/pull/803))

## [0.7.25](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

### 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.25"
version = "0.7.26"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand Down
7 changes: 7 additions & 0 deletions webrtc-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Other

- initialize frame_.samples_per_channel_ ([#779](https://github.com/livekit/rust-sdks/pull/779))
- Expose desktop capturer ([#725](https://github.com/livekit/rust-sdks/pull/725))

## [0.3.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-11-20

### Fixed
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.17"
version = "0.3.18"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions webrtc-sys/build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.3.12](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Other

- Expose desktop capturer ([#725](https://github.com/livekit/rust-sdks/pull/725))

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

### Fixed
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.11"
version = "0.3.12"
edition = "2021"
license = "Apache-2.0"
description = "Build utilities when working with libwebrtc"
Expand Down