Skip to content

Commit

Permalink
Release v0.3.4, v0.4.1 (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennwc authored Jun 24, 2024
1 parent 1e47c5c commit 18bb8c8
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 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 libwebrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "libwebrtc"
version = "0.3.2"
version = "0.3.4"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
description = "Livekit safe bindings to libwebrtc"
repository = "https://github.com/livekit/rust-sdks"

[dependencies]
livekit-protocol = { path = "../livekit-protocol", version = "0.3.3" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.4" }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
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.3.2"
version = "0.3.4"
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.3" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.4" }
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
@@ -1,6 +1,6 @@
[package]
name = "livekit-ffi"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
Expand All @@ -18,8 +18,8 @@ __rustls-tls = ["livekit/__rustls-tls"]
tracing = ["tokio/tracing", "console-subscriber"]

[dependencies]
livekit = { path = "../livekit", version = "0.4.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.3" }
livekit = { path = "../livekit", version = "0.4.1" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.4" }
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 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.3.3"
version = "0.3.4"
edition = "2021"
license = "Apache-2.0"
description = "Livekit protocol and utilities for the Rust SDK"
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.4.0"
version = "0.4.1"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand Down Expand Up @@ -28,9 +28,9 @@ __lk-internal = []

[dependencies]
livekit-runtime = { path = "../livekit-runtime", version = "0.3.0", default-features = false }
livekit-api = { path = "../livekit-api", version = "0.3.2", default-features = false }
libwebrtc = { path = "../libwebrtc", version = "0.3.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.3" }
livekit-api = { path = "../livekit-api", version = "0.3.4", default-features = false }
libwebrtc = { path = "../libwebrtc", version = "0.3.4" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.4" }
prost = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 18bb8c8

Please sign in to comment.