Skip to content

Commit

Permalink
ffi-v0.4.0 & release v0.3.0 (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom authored Jan 11, 2024
1 parent 493ea80 commit b9ba46e
Show file tree
Hide file tree
Showing 16 changed files with 41 additions and 41 deletions.
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.

12 changes: 6 additions & 6 deletions examples/Cargo.lock

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

2 changes: 1 addition & 1 deletion examples/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"

[dependencies]
tokio = { version = "1", features = ["full", "parking_lot"] }
livekit-api = { path = "../../livekit-api", version = "0.2.0", features = ["native-tls"] }
livekit-api = { path = "../../livekit-api", version = "0.3.0", features = ["native-tls"] }
futures = "0.3"

4 changes: 2 additions & 2 deletions examples/basic_room/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
env_logger = "0.10"
livekit = { path = "../../livekit", version = "0.2.0", features = ["native-tls"]}
livekit-api = { path = "../../livekit-api", version = "0.2.0"}
livekit = { path = "../../livekit", version = "0.3.0", features = ["native-tls"]}
livekit-api = { path = "../../livekit-api", version = "0.3.0"}
log = "0.4"
4 changes: 2 additions & 2 deletions examples/mobile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
lazy_static = "1.4.0"
livekit = { path = "../../livekit", version = "0.2.0", features = ["rustls-tls-webpki-roots"] }
livekit = { path = "../../livekit", version = "0.3.0", features = ["rustls-tls-webpki-roots"] }
log = "0.4.19"
tokio = { version = "1", features = ["full"] }

Expand All @@ -14,7 +14,7 @@ jni = "0.21.1"
android_logger = "0.13.1"

[build-dependencies]
webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.2.0" }
webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.3.0" }

[lib]
crate-type = ["cdylib"]
2 changes: 1 addition & 1 deletion examples/play_from_disk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
tokio = { version = "1", features = ["full"] }
livekit = { path = "../../livekit", version = "0.2.0" }
livekit = { path = "../../livekit", version = "0.3.0" }
thiserror = "1.0.47"
log = "0.4.20"
env_logger = "0.10.0"
2 changes: 1 addition & 1 deletion examples/save_to_disk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
tokio = { version = "1", features = ["full"] }
livekit = { path = "../../livekit", version = "0.2.0" }
livekit = { path = "../../livekit", version = "0.3.0" }
bytes = "1.4.0"
tokio-util = "0.7.8"
futures = "0.3.28"
2 changes: 1 addition & 1 deletion examples/webhooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
livekit-api = { version = "0.2.0", path = "../../livekit-api" }
livekit-api = { version = "0.3.0", path = "../../livekit-api" }
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
4 changes: 2 additions & 2 deletions examples/wgpu_room/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tracing = ["console-subscriber", "tokio/tracing"]

[dependencies]
tokio = { version = "1", features = ["full", "parking_lot"] }
livekit = { path = "../../livekit", version = "0.2.0", features = ["native-tls"] }
livekit = { path = "../../livekit", version = "0.3.0", features = ["native-tls"] }
futures = "0.3"
winit = "0.28"
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
Expand All @@ -21,4 +21,4 @@ eframe = { version = "0.22.0", default-features = false, features = ["default_fo
serde = { version = "1", features = ["derive"] }
log = "0.4"
env_logger = "0.10.0"
console-subscriber = { version = "0.1.10", features = ["parking_lot"], optional = true }
console-subscriber = { version = "0.1.10", features = ["parking_lot"], optional = true }
6 changes: 3 additions & 3 deletions libwebrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "libwebrtc"
version = "0.2.0"
version = "0.3.0"
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.2.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand All @@ -18,7 +18,7 @@ thiserror = "1.0"
jni = "0.21"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
webrtc-sys = { path = "../webrtc-sys", version = "0.2.0" }
webrtc-sys = { path = "../webrtc-sys", version = "0.3.0" }
lazy_static = "1.4"
parking_lot = { version = "0.12" }
tokio = { version = "1", features = ["full"] }
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.2.0"
version = "0.3.0"
license = "Apache-2.0"
description = "Rust Server SDK for LiveKit"
edition = "2021"
Expand All @@ -24,7 +24,7 @@ rustls-tls-webpki-roots = ["tokio-tungstenite?/rustls-tls-webpki-roots", "reqwes
__rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]

[dependencies]
livekit-protocol = { path = "../livekit-protocol", version = "0.2.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
Expand Down
10 changes: 5 additions & 5 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.3.18"
version = "0.4.0"
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.2.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.2.0" }
livekit = { path = "../livekit", version = "0.3.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" }
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 @@ -34,10 +34,10 @@ downcast-rs = "1.2"
console-subscriber = { version = "0.1", features = ["parking_lot"], optional = true }

[build-dependencies]
webrtc-sys-build = { path = "../webrtc-sys/build", version = "0.2.0" }
webrtc-sys-build = { path = "../webrtc-sys/build", version = "0.3.0" }

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

[lib]
crate-type = ["lib", "cdylib"]
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.2.0"
version = "0.3.0"
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.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand All @@ -22,9 +22,9 @@ __rustls-tls = ["livekit-api/__rustls-tls"]
__lk-internal = []

[dependencies]
livekit-api = { path = "../livekit-api", version = "0.2.0", default-features = false, features = ["signal-client"] }
libwebrtc = { path = "../libwebrtc", version = "0.2.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.2.0" }
livekit-api = { path = "../livekit-api", version = "0.3.0", default-features = false, features = ["signal-client"] }
libwebrtc = { path = "../libwebrtc", version = "0.3.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" }
prost = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions webrtc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sys"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand All @@ -12,7 +12,7 @@ cxx = "1.0"
log = "0.4"

[build-dependencies]
webrtc-sys-build = { version = "0.2.0", path = "./build" }
webrtc-sys-build = { version = "0.3.0", path = "./build" }
cxx-build = "1.0"
glob = "0.3"
cc = "1.0"
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.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Build utilities when working with libwebrtc"
Expand Down

0 comments on commit b9ba46e

Please sign in to comment.