Skip to content

Commit 7010934

Browse files
authored
v0.1.2 (#104)
1 parent 5ceda45 commit 7010934

12 files changed

Lines changed: 62 additions & 39 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
submodules: true
2323
- name: Publish crates
2424
run: |
25-
cd livekit-utils && cargo publish
25+
cd livekit-protocol && cargo publish
2626
cd ../webrtc-sys && cargo publish
2727
cd ../livekit-webrtc && cargo publish
2828
cd ../livekit && cp ../README.md README.md && cargo publish --allow-dirty
29+
cd ../livekit-ffi && cargo publish

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/Cargo.lock

Lines changed: 37 additions & 15 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.1" }
9+
livekit = { path = "../../livekit", version = "0.1.2" }
1010
log = "0.4"

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.1" }
10+
livekit = { path = "../../livekit", version = "0.1.2" }
1111
bytes = "1.4.0"
1212
tokio-util = "0.7.8"
1313
futures = "0.3.28"

examples/wgpu_room/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
tokio = { version = "1", features = ["full"] }
88
tracing = "0.1"
99
tracing-subscriber = "0.3"
10-
livekit = { path = "../../livekit", version = "0.1.1" }
10+
livekit = { path = "../../livekit", version = "0.1.2" }
1111
futures = "0.3"
1212
wgpu = "0.16"
1313
winit = "0.28"

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.0"
3+
version = "0.1.2"
44
edition = "2021"
55

66
[features]
@@ -20,7 +20,7 @@ rustls-tls-webpki-roots = ["tokio-tungstenite?/rustls-tls-webpki-roots", "reqwes
2020
__rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]
2121

2222
[dependencies]
23-
livekit-protocol = { path = "../livekit-protocol", version = "0.1.0" }
23+
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
2424
thiserror = "1.0"
2525
serde = { version = "1.0", features = ["derive"] }
2626
serde_json = "1.0"

livekit-ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-ffi"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "LiveKit interface for foreign languages"
@@ -15,8 +15,8 @@ rustls-tls-webpki-roots = ["livekit/rustls-tls-webpki-roots"]
1515
__rustls-tls = ["livekit/__rustls-tls"]
1616

1717
[dependencies]
18-
livekit = { path = "../livekit", version = "0.1.1" }
19-
livekit-protocol = { path = "../livekit-protocol", version = "0.1.0" }
18+
livekit = { path = "../livekit", version = "0.1.2" }
19+
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
2020
tokio = { version = "1.0", features = ["full"] }
2121
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
2222
parking_lot = { version = "0.12.1", features=["deadlock_detection"] }

livekit-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-protocol"
3-
version = "0.1.0"
3+
version = "0.1.2"
44
edition = "2021"
55

66
[dependencies]

livekit-webrtc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "livekit-webrtc"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
homepage = "https://livekit.io"
66
license = "Apache-2.0"
77
description = "Livekit safe bindings to libwebrtc"
88
repository = "https://github.com/livekit/client-sdk-rust"
99

1010
[dependencies]
11-
livekit-protocol = { path = "../livekit-protocol", version = "0.1.0" }
11+
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
1212
log = "0.4"
1313
thiserror = "1.0"
1414

1515
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
16-
webrtc-sys = { path = "../webrtc-sys", version = "0.1.1" }
16+
webrtc-sys = { path = "../webrtc-sys", version = "0.1.2" }
1717
lazy_static = "1.4"
1818
parking_lot = { version = "0.12.1" }
1919
futures = { version = "0.3" }

0 commit comments

Comments
 (0)