From 36f724dfa8e3dec4ca2770b34499210e9b0e1dc3 Mon Sep 17 00:00:00 2001 From: yngrtc Date: Sat, 7 Dec 2024 15:43:20 -0800 Subject: [PATCH] update repos --- Cargo.toml | 2 +- ortc/Cargo.toml | 14 -------------- ortc/LICENSE | 21 --------------------- ortc/README.md | 2 -- reserved/ortc/Cargo.toml | 14 ++++++++++++++ {ortc => reserved/ortc}/src/lib.rs | 0 reserved/rtc-interceptor/Cargo.toml | 2 +- reserved/rtc-mdns/Cargo.toml | 2 +- reserved/rtc-media/Cargo.toml | 2 +- rtc-datachannel/Cargo.toml | 2 +- rtc-dtls/Cargo.toml | 2 +- rtc-ice/Cargo.toml | 2 +- rtc-rtcp/Cargo.toml | 2 +- rtc-rtp/Cargo.toml | 2 +- rtc-sctp/Cargo.toml | 2 +- rtc-sdp/Cargo.toml | 2 +- rtc-shared/Cargo.toml | 2 +- rtc-srtp/Cargo.toml | 2 +- rtc-stun/Cargo.toml | 2 +- rtc-turn/Cargo.toml | 2 +- rtc/Cargo.toml | 2 +- 21 files changed, 30 insertions(+), 53 deletions(-) delete mode 100644 ortc/Cargo.toml delete mode 100644 ortc/LICENSE delete mode 100644 ortc/README.md create mode 100644 reserved/ortc/Cargo.toml rename {ortc => reserved/ortc}/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 806f24b..10b0f97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [workspace] members = [ - "ortc", "rtc", "rtc-datachannel", "rtc-dtls", @@ -13,6 +12,7 @@ members = [ "rtc-srtp", "rtc-stun", "rtc-turn", + "reserved/ortc", "reserved/rtc-interceptor", "reserved/rtc-mdns", "reserved/rtc-media", diff --git a/ortc/Cargo.toml b/ortc/Cargo.toml deleted file mode 100644 index 7e9dd6d..0000000 --- a/ortc/Cargo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[package] -name = "ortc" -version = "0.0.0" -authors = ["Rusty Rain "] -edition = "2021" -description = "OpenRTC or ObjectRTC?" -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/ortc" -repository = "https://github.com/webrtc-rs/ortc" -homepage = "https://ortc.rs" -keywords = ["networking", "protocols", "webrtc", "sans-io", "rtc"] -categories = ["network-programming", "asynchronous", "multimedia"] - -[dependencies] diff --git a/ortc/LICENSE b/ortc/LICENSE deleted file mode 100644 index 07d575a..0000000 --- a/ortc/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 ngRTC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/ortc/README.md b/ortc/README.md deleted file mode 100644 index 43c60d9..0000000 --- a/ortc/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# ortc -OpenRTC or ObjectRTC? diff --git a/reserved/ortc/Cargo.toml b/reserved/ortc/Cargo.toml new file mode 100644 index 0000000..7688f9b --- /dev/null +++ b/reserved/ortc/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "ortc" +version = "0.0.0" +authors = ["Rain Liu "] +edition = "2021" +description = "OpenRTC or ObjectRTC?" +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/ortc" +homepage = "https://ortc.rs" +repository = "https://github.com/webrtc-rs/ortc/tree/master/reserved/ortc" + +[dependencies] + +[dev-dependencies] diff --git a/ortc/src/lib.rs b/reserved/ortc/src/lib.rs similarity index 100% rename from ortc/src/lib.rs rename to reserved/ortc/src/lib.rs diff --git a/reserved/rtc-interceptor/Cargo.toml b/reserved/rtc-interceptor/Cargo.toml index fccd750..af6fce1 100644 --- a/reserved/rtc-interceptor/Cargo.toml +++ b/reserved/rtc-interceptor/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC Interceptor in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-interceptor" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/reserved/rtc-interceptor" [dependencies] diff --git a/reserved/rtc-mdns/Cargo.toml b/reserved/rtc-mdns/Cargo.toml index 865cd60..be17e65 100644 --- a/reserved/rtc-mdns/Cargo.toml +++ b/reserved/rtc-mdns/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC mDNS in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-mdns" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/reserved/rtc-mdns" [dependencies] diff --git a/reserved/rtc-media/Cargo.toml b/reserved/rtc-media/Cargo.toml index 7403244..dec0388 100644 --- a/reserved/rtc-media/Cargo.toml +++ b/reserved/rtc-media/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC Media in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-media" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/reserved/rtc-media" [dependencies] diff --git a/rtc-datachannel/Cargo.toml b/rtc-datachannel/Cargo.toml index f8203e0..d6f0adb 100644 --- a/rtc-datachannel/Cargo.toml +++ b/rtc-datachannel/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC DataChannel in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-datachannel" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-datachannel" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["marshal"] } diff --git a/rtc-dtls/Cargo.toml b/rtc-dtls/Cargo.toml index 6920440..6384c7f 100644 --- a/rtc-dtls/Cargo.toml +++ b/rtc-dtls/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC DTLS in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-dtls" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-dtls" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "replay"] } diff --git a/rtc-ice/Cargo.toml b/rtc-ice/Cargo.toml index 72f6b6e..ec6fb59 100644 --- a/rtc-ice/Cargo.toml +++ b/rtc-ice/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC ICE in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-ice" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-ice" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } diff --git a/rtc-rtcp/Cargo.toml b/rtc-rtcp/Cargo.toml index e11fffc..8fc11c2 100644 --- a/rtc-rtcp/Cargo.toml +++ b/rtc-rtcp/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC RTCP in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-rtcp" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-rtcp" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["marshal"] } diff --git a/rtc-rtp/Cargo.toml b/rtc-rtp/Cargo.toml index 3458e18..5514b87 100644 --- a/rtc-rtp/Cargo.toml +++ b/rtc-rtp/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC RTP in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-rtp" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-rtp" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["marshal"] } diff --git a/rtc-sctp/Cargo.toml b/rtc-sctp/Cargo.toml index 63d02dd..378cd61 100644 --- a/rtc-sctp/Cargo.toml +++ b/rtc-sctp/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC SCTP in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-sctp" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-sctp" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } diff --git a/rtc-sdp/Cargo.toml b/rtc-sdp/Cargo.toml index a9c521b..6877281 100644 --- a/rtc-sdp/Cargo.toml +++ b/rtc-sdp/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC SDP in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-sdp" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-sdp" [dependencies] shared = { version = "0.2.1", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } diff --git a/rtc-shared/Cargo.toml b/rtc-shared/Cargo.toml index 04be4ec..3422d30 100644 --- a/rtc-shared/Cargo.toml +++ b/rtc-shared/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC Shared in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-shared" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-shared" [features] default = ["crypto", "marshal", "replay"] diff --git a/rtc-srtp/Cargo.toml b/rtc-srtp/Cargo.toml index 6721fd7..a88242b 100644 --- a/rtc-srtp/Cargo.toml +++ b/rtc-srtp/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC SRTP in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-srtp" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-srtp" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "marshal", "replay"] } diff --git a/rtc-stun/Cargo.toml b/rtc-stun/Cargo.toml index 8301f43..ee8a1d5 100644 --- a/rtc-stun/Cargo.toml +++ b/rtc-stun/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC STUN in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-stun" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-stun" [features] default = [] diff --git a/rtc-turn/Cargo.toml b/rtc-turn/Cargo.toml index d124a09..faa5ae3 100644 --- a/rtc-turn/Cargo.toml +++ b/rtc-turn/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC TURN in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc-turn" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc-turn" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } diff --git a/rtc/Cargo.toml b/rtc/Cargo.toml index 263b23c..d347d98 100644 --- a/rtc/Cargo.toml +++ b/rtc/Cargo.toml @@ -7,7 +7,7 @@ description = "RTC in Rust" license = "MIT/Apache-2.0" documentation = "https://docs.rs/rtc" homepage = "https://ortc.rs" -repository = "https://github.com/webrtc-rs/ortc" +repository = "https://github.com/webrtc-rs/ortc/tree/master/rtc" readme = "../README.md" [dependencies]