From fdf0ad5e0cdda3981e86a964adb5ca8a4d25cab5 Mon Sep 17 00:00:00 2001 From: Mike English Date: Sun, 3 Nov 2024 23:23:04 -0500 Subject: [PATCH] moq-gst-ietf: Rename to avoid confusion I think Luke plans to continue using moq-gst for transfork. Despite the fact that he hasn't published to crates.io under that name yet, I'd like to avoid confusion with the original repo. --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 5 ++--- dev/README.md | 4 ++-- {moq-gst => moq-gst-ietf}/.github/workflows/pr.yml | 0 {moq-gst => moq-gst-ietf}/.github/workflows/release.yml | 0 {moq-gst => moq-gst-ietf}/.gitignore | 0 {moq-gst => moq-gst-ietf}/Cargo.lock | 0 {moq-gst => moq-gst-ietf}/Cargo.toml | 2 +- {moq-gst => moq-gst-ietf}/LICENSE-APACHE | 0 {moq-gst => moq-gst-ietf}/LICENSE-MIT | 0 {moq-gst => moq-gst-ietf}/README.md | 0 {moq-gst => moq-gst-ietf}/build.rs | 0 {moq-gst => moq-gst-ietf}/run | 0 {moq-gst => moq-gst-ietf}/src/lib.rs | 0 {moq-gst => moq-gst-ietf}/src/sink/imp.rs | 0 {moq-gst => moq-gst-ietf}/src/sink/mod.rs | 0 17 files changed, 7 insertions(+), 8 deletions(-) rename {moq-gst => moq-gst-ietf}/.github/workflows/pr.yml (100%) rename {moq-gst => moq-gst-ietf}/.github/workflows/release.yml (100%) rename {moq-gst => moq-gst-ietf}/.gitignore (100%) rename {moq-gst => moq-gst-ietf}/Cargo.lock (100%) rename {moq-gst => moq-gst-ietf}/Cargo.toml (97%) rename {moq-gst => moq-gst-ietf}/LICENSE-APACHE (100%) rename {moq-gst => moq-gst-ietf}/LICENSE-MIT (100%) rename {moq-gst => moq-gst-ietf}/README.md (100%) rename {moq-gst => moq-gst-ietf}/build.rs (100%) rename {moq-gst => moq-gst-ietf}/run (100%) rename {moq-gst => moq-gst-ietf}/src/lib.rs (100%) rename {moq-gst => moq-gst-ietf}/src/sink/imp.rs (100%) rename {moq-gst => moq-gst-ietf}/src/sink/mod.rs (100%) diff --git a/Cargo.lock b/Cargo.lock index 85786cd..072cf18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1293,7 +1293,7 @@ dependencies = [ ] [[package]] -name = "moq-gst" +name = "moq-gst-ietf" version = "0.1.0" dependencies = [ "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 62d7b3c..e9a6b5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ "moq-dir", "moq-native-ietf", "moq-catalog", - "moq-gst", + "moq-gst-ietf", ] resolver = "2" diff --git a/README.md b/README.md index e21e6b3..f6495eb 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,8 @@ See [dev/pub](dev/pub) for the required ffmpeg flags. ### gstreamer -moq-pub can also be run as a library, currently used for a [gstreamer plugin](https://github.com/kixelated/moq-gst). -This is in a separate repository to avoid gstreamer being a hard requirement. -See [run](https://github.com/kixelated/moq-gst/blob/main/run) for an example pipeline. +moq-pub can also be run as a library, currently used for a [gstreamer plugin](moq-gst-ietf). +See [run](moq-gst-ietf/run) for an example pipeline. ## moq-transport diff --git a/dev/README.md b/dev/README.md index 9d548a8..d8d2070 100644 --- a/dev/README.md +++ b/dev/README.md @@ -43,8 +43,8 @@ Requires: ./dev/pub ``` -Alternatively, you can use Gstreamer via [moq-gst](https://github.com/kixelated/moq-gst). -The [run](https://github.com/kixelated/moq-gst/blob/main/run) script does the exact same thing. +Alternatively, you can use Gstreamer via [moq-gst-ietf](../moq-gst-ietf). +The [run](../moq-gst-ietf/run) script does the exact same thing. ## moq-sub diff --git a/moq-gst/.github/workflows/pr.yml b/moq-gst-ietf/.github/workflows/pr.yml similarity index 100% rename from moq-gst/.github/workflows/pr.yml rename to moq-gst-ietf/.github/workflows/pr.yml diff --git a/moq-gst/.github/workflows/release.yml b/moq-gst-ietf/.github/workflows/release.yml similarity index 100% rename from moq-gst/.github/workflows/release.yml rename to moq-gst-ietf/.github/workflows/release.yml diff --git a/moq-gst/.gitignore b/moq-gst-ietf/.gitignore similarity index 100% rename from moq-gst/.gitignore rename to moq-gst-ietf/.gitignore diff --git a/moq-gst/Cargo.lock b/moq-gst-ietf/Cargo.lock similarity index 100% rename from moq-gst/Cargo.lock rename to moq-gst-ietf/Cargo.lock diff --git a/moq-gst/Cargo.toml b/moq-gst-ietf/Cargo.toml similarity index 97% rename from moq-gst/Cargo.toml rename to moq-gst-ietf/Cargo.toml index c674fc7..53963b8 100644 --- a/moq-gst/Cargo.toml +++ b/moq-gst-ietf/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "moq-gst" +name = "moq-gst-ietf" description = "Media over QUIC - gstreamer plugin" authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq-gst" diff --git a/moq-gst/LICENSE-APACHE b/moq-gst-ietf/LICENSE-APACHE similarity index 100% rename from moq-gst/LICENSE-APACHE rename to moq-gst-ietf/LICENSE-APACHE diff --git a/moq-gst/LICENSE-MIT b/moq-gst-ietf/LICENSE-MIT similarity index 100% rename from moq-gst/LICENSE-MIT rename to moq-gst-ietf/LICENSE-MIT diff --git a/moq-gst/README.md b/moq-gst-ietf/README.md similarity index 100% rename from moq-gst/README.md rename to moq-gst-ietf/README.md diff --git a/moq-gst/build.rs b/moq-gst-ietf/build.rs similarity index 100% rename from moq-gst/build.rs rename to moq-gst-ietf/build.rs diff --git a/moq-gst/run b/moq-gst-ietf/run similarity index 100% rename from moq-gst/run rename to moq-gst-ietf/run diff --git a/moq-gst/src/lib.rs b/moq-gst-ietf/src/lib.rs similarity index 100% rename from moq-gst/src/lib.rs rename to moq-gst-ietf/src/lib.rs diff --git a/moq-gst/src/sink/imp.rs b/moq-gst-ietf/src/sink/imp.rs similarity index 100% rename from moq-gst/src/sink/imp.rs rename to moq-gst-ietf/src/sink/imp.rs diff --git a/moq-gst/src/sink/mod.rs b/moq-gst-ietf/src/sink/mod.rs similarity index 100% rename from moq-gst/src/sink/mod.rs rename to moq-gst-ietf/src/sink/mod.rs