Skip to content

Commit

Permalink
v0.1.2 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom authored Jun 30, 2023
1 parent 5ceda45 commit 7010934
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 39 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
submodules: true
- name: Publish crates
run: |
cd livekit-utils && cargo publish
cd livekit-protocol && cargo publish
cd ../webrtc-sys && cargo publish
cd ../livekit-webrtc && cargo publish
cd ../livekit && cp ../README.md README.md && cargo publish --allow-dirty
cd ../livekit-ffi && cargo publish
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.

52 changes: 37 additions & 15 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.1" }
livekit = { path = "../../livekit", version = "0.1.2" }
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.1" }
livekit = { path = "../../livekit", version = "0.1.2" }
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.1" }
livekit = { path = "../../livekit", version = "0.1.2" }
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.0"
version = "0.1.2"
edition = "2021"

[features]
Expand All @@ -20,7 +20,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.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
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.1"
version = "0.1.2"
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.1" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.0" }
livekit = { path = "../livekit", version = "0.1.2" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
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.0"
version = "0.1.2"
edition = "2021"

[dependencies]
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.1"
version = "0.1.2"
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.0" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.2" }
log = "0.4"
thiserror = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
webrtc-sys = { path = "../webrtc-sys", version = "0.1.1" }
webrtc-sys = { path = "../webrtc-sys", version = "0.1.2" }
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.1"
version = "0.1.2"
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.0", default-features = false, features = ["signal-client"] }
livekit-webrtc = { path = "../livekit-webrtc", version = "0.1.1" }
livekit-protocol = { path = "../livekit-protocol", version = "0.1.0" }
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" }
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.1"
version = "0.1.2"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down

0 comments on commit 7010934

Please sign in to comment.