Skip to content

Commit

Permalink
bump rtc 0.7.0, api 0.4.1, proto 0.3.6 (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherry authored Oct 31, 2024
1 parent 7180628 commit 0699735
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions 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.0"
version = "0.4.1"
license = "Apache-2.0"
description = "Rust Server SDK for LiveKit"
edition = "2021"
Expand Down Expand Up @@ -65,7 +65,7 @@ rustls-tls-webpki-roots = [
__rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]

[dependencies]
livekit-protocol = { path = "../livekit-protocol", version = "0.3.5" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.6" }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions livekit-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ __rustls-tls = ["livekit/__rustls-tls"]
tracing = ["tokio/tracing", "console-subscriber"]

[dependencies]
livekit = { path = "../livekit", version = "0.6.0" }
livekit = { path = "../livekit", version = "0.7.0" }
soxr-sys = { path = "../soxr-sys" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.5" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.6" }
tokio = { version = "1", features = ["full", "parking_lot"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
Expand All @@ -42,7 +42,7 @@ jni = "0.21.1"
webrtc-sys-build = { path = "../webrtc-sys/build", version = "0.3.2" }

[dev-dependencies]
livekit-api = { path = "../livekit-api", version = "0.4.0" }
livekit-api = { path = "../livekit-api", version = "0.4.1" }

[lib]
crate-type = ["lib", "cdylib"]
4 changes: 2 additions & 2 deletions livekit-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "livekit-protocol"
version = "0.3.5"
version = "0.3.6"
edition = "2021"
license = "Apache-2.0"
description = "Livekit protocol and utilities for the Rust SDK"
repository = "https://github.com/livekit/rust-sdks"

[dependencies]
livekit-runtime = { path = "../livekit-runtime", version = "0.3.0" }
livekit-runtime = { path = "../livekit-runtime", version = "0.3.1" }
tokio = { version = "1", default-features = false, features = [
"sync",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion livekit-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-runtime"
version = "0.3.0"
version = "0.3.1"
license = "Apache-2.0"
description = "Async runtime compatibility layer for LiveKit"
edition = "2021"
Expand Down
8 changes: 4 additions & 4 deletions livekit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand All @@ -27,10 +27,10 @@ __rustls-tls = ["livekit-api/__rustls-tls"]
__lk-internal = []

[dependencies]
livekit-runtime = { path = "../livekit-runtime", version = "0.3.0", default-features = false }
livekit-api = { path = "../livekit-api", version = "0.4.0", default-features = false }
livekit-runtime = { path = "../livekit-runtime", version = "0.3.1", default-features = false }
livekit-api = { path = "../livekit-api", version = "0.4.1", default-features = false }
libwebrtc = { path = "../libwebrtc", version = "0.3.7" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.5" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.6" }
prost = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 0699735

Please sign in to comment.