diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a0c5e2d1..63c22552 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,10 +32,10 @@ jobs: submodules: true - name: Publish crates run: | - cd livekit-protocol && cargo publish - cd ../webrtc-sys/build && cargo publish - cd ../../webrtc-sys && cargo publish - cd ../libwebrtc && cargo publish - cd ../livekit-api && cargo publish - cd ../livekit && cp ../README.md README.md && cargo publish --allow-dirty - cd ../livekit-ffi && cargo publish + cd livekit-protocol && cargo publish --no-verify + cd ../webrtc-sys/build && cargo publish --no-verify + cd ../../webrtc-sys && cargo publish --no-verify + cd ../libwebrtc && cargo publish --no-verify + cd ../livekit-api && cargo publish --no-verify + cd ../livekit && cp ../README.md README.md && cargo publish --allow-dirty --no-verify + cd ../livekit-ffi && cargo publish --no-verify diff --git a/Cargo.lock b/Cargo.lock index 299a782f..1cfbd0d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1073,7 +1073,7 @@ dependencies = [ [[package]] name = "libwebrtc" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cxx", "env_logger", @@ -1111,7 +1111,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "livekit" -version = "0.3.0" +version = "0.3.1" dependencies = [ "futures-util", "lazy_static", @@ -1129,7 +1129,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.3.0" +version = "0.3.1" dependencies = [ "base64", "futures-util", @@ -2653,7 +2653,7 @@ checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" [[package]] name = "webrtc-sys" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cc", "cxx", @@ -2666,7 +2666,7 @@ dependencies = [ [[package]] name = "webrtc-sys-build" -version = "0.3.0" +version = "0.3.1" dependencies = [ "fs2", "regex", diff --git a/examples/Cargo.lock b/examples/Cargo.lock index a6ae575a..28107353 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -1778,7 +1778,7 @@ dependencies = [ [[package]] name = "libwebrtc" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cxx", "jni", @@ -1815,7 +1815,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "livekit" -version = "0.3.0" +version = "0.3.1" dependencies = [ "futures-util", "lazy_static", @@ -1833,7 +1833,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.3.0" +version = "0.3.1" dependencies = [ "base64", "futures-util", @@ -1855,7 +1855,7 @@ dependencies = [ [[package]] name = "livekit-protocol" -version = "0.3.0" +version = "0.3.1" dependencies = [ "futures-util", "parking_lot", @@ -4000,7 +4000,7 @@ checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" [[package]] name = "webrtc-sys" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cc", "cxx", @@ -4012,7 +4012,7 @@ dependencies = [ [[package]] name = "webrtc-sys-build" -version = "0.3.0" +version = "0.3.1" dependencies = [ "fs2", "regex", diff --git a/examples/api/Cargo.toml b/examples/api/Cargo.toml index ae79144a..415e39a0 100644 --- a/examples/api/Cargo.toml +++ b/examples/api/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit-api = { path = "../../livekit-api", version = "0.3.0", features = ["native-tls"] } +livekit-api = { path = "../../livekit-api", version = "0.3.1", features = ["native-tls"] } futures = "0.3" diff --git a/examples/basic_room/Cargo.toml b/examples/basic_room/Cargo.toml index 0e8c323b..db32d844 100644 --- a/examples/basic_room/Cargo.toml +++ b/examples/basic_room/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full"] } env_logger = "0.10" -livekit = { path = "../../livekit", version = "0.3.0", features = ["native-tls"]} -livekit-api = { path = "../../livekit-api", version = "0.3.0"} +livekit = { path = "../../livekit", version = "0.3.1", features = ["native-tls"]} +livekit-api = { path = "../../livekit-api", version = "0.3.1"} log = "0.4" diff --git a/examples/mobile/Cargo.toml b/examples/mobile/Cargo.toml index d2839888..387cd8e6 100644 --- a/examples/mobile/Cargo.toml +++ b/examples/mobile/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] lazy_static = "1.4.0" -livekit = { path = "../../livekit", version = "0.3.0", features = ["rustls-tls-webpki-roots"] } +livekit = { path = "../../livekit", version = "0.3.1", features = ["rustls-tls-webpki-roots"] } log = "0.4.19" tokio = { version = "1", features = ["full"] } @@ -14,7 +14,7 @@ jni = "0.21.1" android_logger = "0.13.1" [build-dependencies] -webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.3.0" } +webrtc-sys-build = { path = "../../webrtc-sys/build", version = "0.3.1" } [lib] crate-type = ["cdylib"] diff --git a/examples/play_from_disk/Cargo.toml b/examples/play_from_disk/Cargo.toml index d226573e..78e3a262 100644 --- a/examples/play_from_disk/Cargo.toml +++ b/examples/play_from_disk/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full"] } -livekit = { path = "../../livekit", version = "0.3.0" } +livekit = { path = "../../livekit", version = "0.3.1" } thiserror = "1.0.47" log = "0.4.20" env_logger = "0.10.0" diff --git a/examples/save_to_disk/Cargo.toml b/examples/save_to_disk/Cargo.toml index 15510f57..6b215235 100644 --- a/examples/save_to_disk/Cargo.toml +++ b/examples/save_to_disk/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full"] } -livekit = { path = "../../livekit", version = "0.3.0" } +livekit = { path = "../../livekit", version = "0.3.1" } bytes = "1.4.0" tokio-util = "0.7.8" futures = "0.3.28" diff --git a/examples/webhooks/Cargo.toml b/examples/webhooks/Cargo.toml index f10e00e9..fa6131e8 100644 --- a/examples/webhooks/Cargo.toml +++ b/examples/webhooks/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -livekit-api = { version = "0.3.0", path = "../../livekit-api" } +livekit-api = { version = "0.3.1", path = "../../livekit-api" } hyper = { version = "0.14", features = ["full"] } tokio = { version = "1", features = ["full"] } diff --git a/examples/wgpu_room/Cargo.toml b/examples/wgpu_room/Cargo.toml index 95f2ea12..7aad5909 100644 --- a/examples/wgpu_room/Cargo.toml +++ b/examples/wgpu_room/Cargo.toml @@ -9,7 +9,7 @@ tracing = ["console-subscriber", "tokio/tracing"] [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit = { path = "../../livekit", version = "0.3.0", features = ["native-tls"] } +livekit = { path = "../../livekit", version = "0.3.1", features = ["native-tls"] } futures = "0.3" winit = "0.28" parking_lot = { version = "0.12.1", features = ["deadlock_detection"] } diff --git a/libwebrtc/Cargo.toml b/libwebrtc/Cargo.toml index c6071b82..1a31a46e 100644 --- a/libwebrtc/Cargo.toml +++ b/libwebrtc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libwebrtc" -version = "0.3.0" +version = "0.3.1" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" @@ -8,7 +8,7 @@ description = "Livekit safe bindings to libwebrtc" repository = "https://github.com/livekit/rust-sdks" [dependencies] -livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" } +livekit-protocol = { path = "../livekit-protocol", version = "0.3.1" } log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" @@ -18,7 +18,7 @@ thiserror = "1.0" jni = "0.21" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -webrtc-sys = { path = "../webrtc-sys", version = "0.3.0" } +webrtc-sys = { path = "../webrtc-sys", version = "0.3.1" } lazy_static = "1.4" parking_lot = { version = "0.12" } tokio = { version = "1", features = ["full"] } diff --git a/livekit-api/Cargo.toml b/livekit-api/Cargo.toml index 23063ee5..6fa1865d 100644 --- a/livekit-api/Cargo.toml +++ b/livekit-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-api" -version = "0.3.0" +version = "0.3.1" license = "Apache-2.0" description = "Rust Server SDK for LiveKit" edition = "2021" @@ -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.3.0" } +livekit-protocol = { path = "../livekit-protocol", version = "0.3.1" } thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } sha2 = "0.10" diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index 4d7dc8f4..43971ade 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -18,8 +18,8 @@ __rustls-tls = ["livekit/__rustls-tls"] tracing = ["tokio/tracing", "console-subscriber"] [dependencies] -livekit = { path = "../livekit", version = "0.3.0" } -livekit-protocol = { path = "../livekit-protocol", version = "0.3.0" } +livekit = { path = "../livekit", version = "0.3.1" } +livekit-protocol = { path = "../livekit-protocol", version = "0.3.1" } 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"] } diff --git a/livekit-protocol/protocol b/livekit-protocol/protocol index ee031bdb..4f0d066e 160000 --- a/livekit-protocol/protocol +++ b/livekit-protocol/protocol @@ -1 +1 @@ -Subproject commit ee031bdb599e53d850e8234bdcbdd39a88c97c7b +Subproject commit 4f0d066ef6bb41e5954c90d86b60eda75a40543f diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index 9415b111..7bfe8b79 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "Apache-2.0" description = "Rust Client SDK for LiveKit" @@ -22,9 +22,9 @@ __rustls-tls = ["livekit-api/__rustls-tls"] __lk-internal = [] [dependencies] -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" } +livekit-api = { path = "../livekit-api", version = "0.3.1", default-features = false, features = ["signal-client"] } +libwebrtc = { path = "../libwebrtc", version = "0.3.1" } +livekit-protocol = { path = "../livekit-protocol", version = "0.3.1" } prost = "0.12" serde = { version = "1", features = ["derive"] } serde_json = "1.0" diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index 0b764382..5181a4af 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys" -version = "0.3.0" +version = "0.3.1" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" @@ -12,7 +12,7 @@ cxx = "1.0" log = "0.4" [build-dependencies] -webrtc-sys-build = { version = "0.3.0", path = "./build" } +webrtc-sys-build = { version = "0.3.1", path = "./build" } cxx-build = "1.0" glob = "0.3" cc = "1.0" diff --git a/webrtc-sys/build/Cargo.toml b/webrtc-sys/build/Cargo.toml index 3c9bed1c..5f7e84d2 100644 --- a/webrtc-sys/build/Cargo.toml +++ b/webrtc-sys/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys-build" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "Apache-2.0" description = "Build utilities when working with libwebrtc"