Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanchayan Maity <sanchayan@sanchayanmaity.net>2022-05-26 13:01:46 +0300
committerSebastian Dröge <slomo@coaxion.net>2022-06-14 11:03:49 +0300
commit511ee766df22c1b33e0967f9c389f9c47bbbda8c (patch)
treef2f4ffc1cf8fcc78b311c63c42c70db5711e6c0e
parent81437bb1c962a8b7b423e846fe4fcc65d9aefa55 (diff)
Rename rusoto to aws
Now that migration to AWS SDK is complete, rename directory and references to aws/AWS SDK. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/759>
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
-rw-r--r--meson.build2
-rw-r--r--net/aws/Cargo.toml (renamed from net/rusoto/Cargo.toml)0
l---------net/aws/LICENSE-MPL-2.0 (renamed from net/rusoto/LICENSE-MPL-2.0)0
-rw-r--r--net/aws/README.md (renamed from net/rusoto/README.md)0
-rw-r--r--net/aws/build.rs (renamed from net/rusoto/build.rs)0
-rw-r--r--net/aws/src/aws_transcribe_parse/imp.rs (renamed from net/rusoto/src/aws_transcribe_parse/imp.rs)0
-rw-r--r--net/aws/src/aws_transcribe_parse/mod.rs (renamed from net/rusoto/src/aws_transcribe_parse/mod.rs)0
-rw-r--r--net/aws/src/aws_transcriber/imp.rs (renamed from net/rusoto/src/aws_transcriber/imp.rs)0
-rw-r--r--net/aws/src/aws_transcriber/mod.rs (renamed from net/rusoto/src/aws_transcriber/mod.rs)0
-rw-r--r--net/aws/src/aws_transcriber/packet/mod.rs (renamed from net/rusoto/src/aws_transcriber/packet/mod.rs)0
-rw-r--r--net/aws/src/lib.rs (renamed from net/rusoto/src/lib.rs)0
-rw-r--r--net/aws/src/s3sink/imp.rs (renamed from net/rusoto/src/s3sink/imp.rs)0
-rw-r--r--net/aws/src/s3sink/mod.rs (renamed from net/rusoto/src/s3sink/mod.rs)0
-rw-r--r--net/aws/src/s3src/imp.rs (renamed from net/rusoto/src/s3src/imp.rs)0
-rw-r--r--net/aws/src/s3src/mod.rs (renamed from net/rusoto/src/s3src/mod.rs)0
-rw-r--r--net/aws/src/s3url.rs (renamed from net/rusoto/src/s3url.rs)0
-rw-r--r--net/aws/src/s3utils.rs (renamed from net/rusoto/src/s3utils.rs)0
19 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d07f82609..c23bb8abe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,7 +15,7 @@ members = [
"net/hlssink3",
"net/onvif",
"net/reqwest",
- "net/rusoto",
+ "net/aws",
"utils/fallbackswitch",
"utils/togglerecord",
"utils/tracers",
@@ -50,7 +50,7 @@ default-members = [
"generic/threadshare",
"net/onvif",
"net/reqwest",
- "net/rusoto",
+ "net/aws",
"utils/fallbackswitch",
"utils/togglerecord",
"utils/tracers",
diff --git a/README.md b/README.md
index 823044937..84a74d3c6 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ You will find the following plugins in this repository:
- `reqwest`: An HTTP source element based on the [reqwest](https://github.com/seanmonstar/reqwest) library.
- - `rusoto`: Various elements for Amazon AWS services using the [Rusoto](https://rusoto.org) library
+ - `aws`: Various elements for Amazon AWS services using the [AWS SDK](https://awslabs.github.io/aws-sdk-rust/) library
- `s3src`/`s3sink`: A source and sink element to talk to the Amazon S3 object storage system.
- `aws_transcriber`: an element wrapping the AWS Transcriber service.
diff --git a/meson.build b/meson.build
index 0cb5cb5bd..702273e33 100644
--- a/meson.build
+++ b/meson.build
@@ -46,7 +46,7 @@ plugins = {
'gst-plugin-reqwest': 'libgstreqwest',
'gst-plugin-hlssink3': 'libgsthlssink3',
'gst-plugin-rspng': 'libgstrspng',
- 'gst-plugin-rusoto': 'libgstrusoto',
+ 'gst-plugin-aws': 'libgstaws',
'gst-plugin-textwrap': 'libgstrstextwrap',
'gst-plugin-fmp4': 'libgstfmp4',
'gst-plugin-threadshare': 'libgstthreadshare',
diff --git a/net/rusoto/Cargo.toml b/net/aws/Cargo.toml
index 9364c8fbd..9364c8fbd 100644
--- a/net/rusoto/Cargo.toml
+++ b/net/aws/Cargo.toml
diff --git a/net/rusoto/LICENSE-MPL-2.0 b/net/aws/LICENSE-MPL-2.0
index eb5d24fe9..eb5d24fe9 120000
--- a/net/rusoto/LICENSE-MPL-2.0
+++ b/net/aws/LICENSE-MPL-2.0
diff --git a/net/rusoto/README.md b/net/aws/README.md
index f84cdc40e..f84cdc40e 100644
--- a/net/rusoto/README.md
+++ b/net/aws/README.md
diff --git a/net/rusoto/build.rs b/net/aws/build.rs
index cda12e57e..cda12e57e 100644
--- a/net/rusoto/build.rs
+++ b/net/aws/build.rs
diff --git a/net/rusoto/src/aws_transcribe_parse/imp.rs b/net/aws/src/aws_transcribe_parse/imp.rs
index bf9d95178..bf9d95178 100644
--- a/net/rusoto/src/aws_transcribe_parse/imp.rs
+++ b/net/aws/src/aws_transcribe_parse/imp.rs
diff --git a/net/rusoto/src/aws_transcribe_parse/mod.rs b/net/aws/src/aws_transcribe_parse/mod.rs
index 0191f2a0a..0191f2a0a 100644
--- a/net/rusoto/src/aws_transcribe_parse/mod.rs
+++ b/net/aws/src/aws_transcribe_parse/mod.rs
diff --git a/net/rusoto/src/aws_transcriber/imp.rs b/net/aws/src/aws_transcriber/imp.rs
index dc06e0c9f..dc06e0c9f 100644
--- a/net/rusoto/src/aws_transcriber/imp.rs
+++ b/net/aws/src/aws_transcriber/imp.rs
diff --git a/net/rusoto/src/aws_transcriber/mod.rs b/net/aws/src/aws_transcriber/mod.rs
index 02b50ba89..02b50ba89 100644
--- a/net/rusoto/src/aws_transcriber/mod.rs
+++ b/net/aws/src/aws_transcriber/mod.rs
diff --git a/net/rusoto/src/aws_transcriber/packet/mod.rs b/net/aws/src/aws_transcriber/packet/mod.rs
index d11a054ca..d11a054ca 100644
--- a/net/rusoto/src/aws_transcriber/packet/mod.rs
+++ b/net/aws/src/aws_transcriber/packet/mod.rs
diff --git a/net/rusoto/src/lib.rs b/net/aws/src/lib.rs
index 9abe8f727..9abe8f727 100644
--- a/net/rusoto/src/lib.rs
+++ b/net/aws/src/lib.rs
diff --git a/net/rusoto/src/s3sink/imp.rs b/net/aws/src/s3sink/imp.rs
index b6b0e5015..b6b0e5015 100644
--- a/net/rusoto/src/s3sink/imp.rs
+++ b/net/aws/src/s3sink/imp.rs
diff --git a/net/rusoto/src/s3sink/mod.rs b/net/aws/src/s3sink/mod.rs
index 16575e416..16575e416 100644
--- a/net/rusoto/src/s3sink/mod.rs
+++ b/net/aws/src/s3sink/mod.rs
diff --git a/net/rusoto/src/s3src/imp.rs b/net/aws/src/s3src/imp.rs
index c03efc3e5..c03efc3e5 100644
--- a/net/rusoto/src/s3src/imp.rs
+++ b/net/aws/src/s3src/imp.rs
diff --git a/net/rusoto/src/s3src/mod.rs b/net/aws/src/s3src/mod.rs
index 7cc9218cb..7cc9218cb 100644
--- a/net/rusoto/src/s3src/mod.rs
+++ b/net/aws/src/s3src/mod.rs
diff --git a/net/rusoto/src/s3url.rs b/net/aws/src/s3url.rs
index 1a3311182..1a3311182 100644
--- a/net/rusoto/src/s3url.rs
+++ b/net/aws/src/s3url.rs
diff --git a/net/rusoto/src/s3utils.rs b/net/aws/src/s3utils.rs
index 8790ec5ee..8790ec5ee 100644
--- a/net/rusoto/src/s3utils.rs
+++ b/net/aws/src/s3utils.rs