Skip to content

Commit

Permalink
v0.1.3 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom authored Jul 5, 2023
1 parent 7f8cee0 commit a482d4c
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 84 deletions.
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.

66 changes: 5 additions & 61 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/basic_room/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
env_logger = "0.10"
livekit = { path = "../../livekit", version = "0.1.2" }
livekit = { path = "../../livekit", version = "0.1.3" }
log = "0.4"
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.1.2" }
livekit = { path = "../../livekit", version = "0.1.3" }
bytes = "1.4.0"
tokio-util = "0.7.8"
futures = "0.3.28"
2 changes: 1 addition & 1 deletion examples/wgpu_room/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
livekit = { path = "../../livekit", version = "0.1.2" }
livekit = { path = "../../livekit", version = "0.1.3" }
futures = "0.3"
wgpu = "0.16"
winit = "0.28"
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.1.2"
version = "0.1.3"
license = "Apache-2.0"
description = "Server SDK for livekit"
edition = "2021"
Expand All @@ -22,7 +22,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.1.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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.1.2"
version = "0.1.3"
edition = "2021"
license = "Apache-2.0"
description = "LiveKit interface for foreign languages"
Expand All @@ -15,8 +15,8 @@ rustls-tls-webpki-roots = ["livekit/rustls-tls-webpki-roots"]
__rustls-tls = ["livekit/__rustls-tls"]

[dependencies]
livekit = { path = "../livekit", version = "0.1.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
livekit = { path = "../livekit", version = "0.1.3" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
tokio = { version = "1.0", features = ["full"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
parking_lot = { version = "0.12.1", 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.1.2"
version = "0.1.3"
license = "Apache-2.0"
description = "Protocol for LiveKit server"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions livekit-webrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "livekit-webrtc"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
description = "Livekit safe bindings to libwebrtc"
repository = "https://github.com/livekit/client-sdk-rust"

[dependencies]
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
log = "0.4"
thiserror = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
webrtc-sys = { path = "../webrtc-sys", version = "0.1.2" }
webrtc-sys = { path = "../webrtc-sys", version = "0.1.3" }
lazy_static = "1.4"
parking_lot = { version = "0.12.1" }
futures = { version = "0.3" }
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.1.2"
version = "0.1.3"
edition = "2021"
license = "Apache-2.0"
description = "Native SDK for LiveKit"
Expand All @@ -19,9 +19,9 @@ rustls-tls-webpki-roots = ["livekit-api/rustls-tls-webpki-roots"]
__rustls-tls = ["livekit-api/__rustls-tls"]

[dependencies]
livekit-api = { path = "../livekit-api", version = "0.1.2", default-features = false, features = ["signal-client"] }
livekit-webrtc = { path = "../livekit-webrtc", version = "0.1.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
livekit-api = { path = "../livekit-api", version = "0.1.3", default-features = false, features = ["signal-client"] }
livekit-webrtc = { path = "../livekit-webrtc", version = "0.1.3" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
prost = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
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.1.2"
version = "0.1.3"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down

0 comments on commit a482d4c

Please sign in to comment.