Skip to content

Commit 93ce7e9

Browse files
authored
v0.2.0 (#152)
1 parent 5d321b0 commit 93ce7e9

14 files changed

Lines changed: 44 additions & 44 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic_room/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
tokio = { version = "1", features = ["full"] }
88
env_logger = "0.10"
9-
livekit = { path = "../../livekit", version = "0.1.3", features = ["native-tls"]}
9+
livekit = { path = "../../livekit", version = "0.2.0", features = ["native-tls"]}
1010
log = "0.4"

examples/mobile/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
lazy_static = "1.4.0"
8-
livekit = { path = "../../livekit", version = "0.1.2", features = ["rustls-tls-webpki-roots"] }
8+
livekit = { path = "../../livekit", version = "0.2.0", features = ["rustls-tls-webpki-roots"] }
99
log = "0.4.19"
1010
tokio = { version = "1", features = ["full"] }
1111

@@ -14,7 +14,7 @@ jni = "0.21.1"
1414
android_logger = "0.13.1"
1515

1616
[build-dependencies]
17-
webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.1.3" }
17+
webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.2.0" }
1818

1919
[lib]
2020
crate-type = ["cdylib"]

examples/save_to_disk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
tokio = { version = "1", features = ["full"] }
10-
livekit = { path = "../../livekit", version = "0.1.3" }
10+
livekit = { path = "../../livekit", version = "0.2.0" }
1111
bytes = "1.4.0"
1212
tokio-util = "0.7.8"
1313
futures = "0.3.28"

examples/webhooks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
livekit-api = { version = "0.1.3", path = "../../livekit-api" }
7+
livekit-api = { version = "0.2.0", path = "../../livekit-api" }
88
hyper = { version = "0.14", features = ["full"] }
99
tokio = { version = "1", features = ["full"] }

examples/wgpu_room/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tracing = ["console-subscriber", "tokio/tracing"]
99

1010
[dependencies]
1111
tokio = { version = "1", features = ["full", "parking_lot"] }
12-
livekit = { path = "../../livekit", version = "0.1.3", features = ["native-tls"] }
12+
livekit = { path = "../../livekit", version = "0.2.0", features = ["native-tls"] }
1313
futures = "0.3"
1414
winit = "0.28"
1515
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }

livekit-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-api"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
license = "Apache-2.0"
55
description = "Rust Server SDK for LiveKit"
66
edition = "2021"
@@ -24,7 +24,7 @@ rustls-tls-webpki-roots = ["tokio-tungstenite?/rustls-tls-webpki-roots", "reqwes
2424
__rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]
2525

2626
[dependencies]
27-
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
27+
livekit-protocol = { path = "../livekit-protocol", version = "0.2.0" }
2828
thiserror = "1.0"
2929
serde = { version = "1.0", features = ["derive"] }
3030
sha2 = "0.10"

livekit-ffi/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "livekit-ffi"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "LiveKit interface to easily use the Rust SDK on other languages"
7-
repository = "https://github.com/livekit/client-sdk-rust"
7+
repository = "https://github.com/livekit/client-sdk-rust"
88

99
[features]
1010
default = ["rustls-tls-native-roots"]
@@ -18,8 +18,8 @@ __rustls-tls = ["livekit/__rustls-tls"]
1818
tracing = ["tokio/tracing", "console-subscriber"]
1919

2020
[dependencies]
21-
livekit = { path = "../livekit", version = "0.1.3" }
22-
livekit-protocol = { path = "../livekit-protocol", version = "0.1.3" }
21+
livekit = { path = "../livekit", version = "0.2.0" }
22+
livekit-protocol = { path = "../livekit-protocol", version = "0.2.0" }
2323
tokio = { version = "1", features = ["full", "parking_lot"] }
2424
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
2525
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
@@ -34,10 +34,10 @@ downcast-rs = "1.2"
3434
console-subscriber = { version = "0.1", features = ["parking_lot"], optional = true }
3535

3636
[build-dependencies]
37-
webrtc-sys-build = { path = "../webrtc-sys/build", version = "0.1.3" }
37+
webrtc-sys-build = { path = "../webrtc-sys/build", version = "0.2.0" }
3838

3939
[dev-dependencies]
40-
livekit-api = { path = "../livekit-api", version = "0.1.3" }
40+
livekit-api = { path = "../livekit-api", version = "0.2.0" }
4141

4242
[lib]
4343
crate-type = ["cdylib"]

livekit-protocol/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "livekit-protocol"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Livekit protocol and utilities for the Rust SDK"
7-
repository = "https://github.com/livekit/client-sdk-rust"
7+
repository = "https://github.com/livekit/client-sdk-rust"
88

99
[dependencies]
1010
tokio = { version = "1", features = ["full"] }

0 commit comments

Comments
 (0)