From b96858bdba42e4ec23e3b1f705b486280082052e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Monnom?= Date: Thu, 12 Jan 2023 15:16:04 +0100 Subject: [PATCH] add gh repo to Cargo.toml (#33) --- livekit-ffi/Cargo.toml | 1 + livekit-utils/Cargo.toml | 1 + livekit-webrtc/Cargo.toml | 1 + livekit/Cargo.toml | 1 + webrtc-sys/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index 582639f..25686ce 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.1" edition = "2021" license = "Apache-2.0" description = "LiveKit interface for foreign languages" +repository = "https://github.com/livekit/client-sdk-rust" [dependencies] livekit = { path = "../livekit", version = "0.1.1" } diff --git a/livekit-utils/Cargo.toml b/livekit-utils/Cargo.toml index 68cd2c0..2a9a5d4 100644 --- a/livekit-utils/Cargo.toml +++ b/livekit-utils/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.1" edition = "2021" license = "Apache-2.0" description = "Shared utilities for livekit" +repository = "https://github.com/livekit/client-sdk-rust" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/livekit-webrtc/Cargo.toml b/livekit-webrtc/Cargo.toml index 43a7ba5..3a34979 100644 --- a/livekit-webrtc/Cargo.toml +++ b/livekit-webrtc/Cargo.toml @@ -5,6 +5,7 @@ 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] webrtc-sys = { path = "../webrtc-sys", version = "0.1.1" } diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index d616938..76425ab 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.1" edition = "2021" license = "Apache-2.0" description = "Native SDK for LiveKit" +repository = "https://github.com/livekit/client-sdk-rust" [dependencies] livekit-webrtc = { path = "../livekit-webrtc", version = "0.1.1" } diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index 2252828..e324a16 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -5,6 +5,7 @@ edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" description = "Unsafe bindings to libwebrtc" +repository = "https://github.com/livekit/client-sdk-rust" [dependencies] cxx = "1.0"