about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-23 13:06:00 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-23 13:06:00 +0200
commit52e99b38eae6b4f3cb991342ff9ba9abbab9e42c (patch)
tree9fa6f0582dfb8b6dc7b49bbd6206ab4b533ff900
parentrefactor(cli): Replace the byte parser with the one from the `bytes` crate (diff)
downloadyt-52e99b38eae6b4f3cb991342ff9ba9abbab9e42c.tar.gz
yt-52e99b38eae6b4f3cb991342ff9ba9abbab9e42c.zip
refactor(yt_dlp): Also move the `crates` subdirectory
-rw-r--r--Cargo.toml2
-rw-r--r--crates/yt_dlp/.cargo/config.toml (renamed from yt_dlp/.cargo/config.toml)0
-rw-r--r--crates/yt_dlp/.gitignore (renamed from yt_dlp/.gitignore)0
-rw-r--r--crates/yt_dlp/Cargo.lock (renamed from yt_dlp/Cargo.lock)0
-rw-r--r--crates/yt_dlp/Cargo.lock.license (renamed from yt_dlp/Cargo.lock.license)0
-rw-r--r--crates/yt_dlp/Cargo.toml (renamed from yt_dlp/Cargo.toml)2
-rw-r--r--crates/yt_dlp/README.md (renamed from yt_dlp/README.md)0
-rw-r--r--crates/yt_dlp/cog.toml (renamed from yt_dlp/cog.toml)0
-rw-r--r--crates/yt_dlp/src/duration.rs (renamed from yt_dlp/src/duration.rs)0
-rw-r--r--crates/yt_dlp/src/lib.rs (renamed from yt_dlp/src/lib.rs)0
-rw-r--r--crates/yt_dlp/src/logging.rs (renamed from yt_dlp/src/logging.rs)0
-rw-r--r--crates/yt_dlp/src/main.rs (renamed from yt_dlp/src/main.rs)0
-rw-r--r--crates/yt_dlp/src/wrapper/info_json.rs (renamed from yt_dlp/src/wrapper/info_json.rs)0
-rw-r--r--crates/yt_dlp/src/wrapper/mod.rs (renamed from yt_dlp/src/wrapper/mod.rs)0
-rw-r--r--crates/yt_dlp/src/wrapper/yt_dlp_options.rs (renamed from yt_dlp/src/wrapper/yt_dlp_options.rs)0
-rwxr-xr-xcrates/yt_dlp/update.sh (renamed from yt_dlp/update.sh)0
16 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 20b5af2..c722845 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,7 +38,7 @@ tokio = { version = "1.39.3", features = [
 ] }
 url = { version = "2.5.2", features = ["serde"] }
 xdg = "2.5.2"
-yt_dlp = { path = "./yt_dlp/" }
+yt_dlp = { path = "./crates/yt_dlp/" }
 libmpv2 = { path = "./crates/libmpv2" }
 bytes = { path = "./crates/bytes" }
 trinitry = { version = "0.2.2" }
diff --git a/yt_dlp/.cargo/config.toml b/crates/yt_dlp/.cargo/config.toml
index d84f14d..d84f14d 100644
--- a/yt_dlp/.cargo/config.toml
+++ b/crates/yt_dlp/.cargo/config.toml
diff --git a/yt_dlp/.gitignore b/crates/yt_dlp/.gitignore
index e7d49e7..e7d49e7 100644
--- a/yt_dlp/.gitignore
+++ b/crates/yt_dlp/.gitignore
diff --git a/yt_dlp/Cargo.lock b/crates/yt_dlp/Cargo.lock
index cb8d7c9..cb8d7c9 100644
--- a/yt_dlp/Cargo.lock
+++ b/crates/yt_dlp/Cargo.lock
diff --git a/yt_dlp/Cargo.lock.license b/crates/yt_dlp/Cargo.lock.license
index d4d410f..d4d410f 100644
--- a/yt_dlp/Cargo.lock.license
+++ b/crates/yt_dlp/Cargo.lock.license
diff --git a/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml
index e5f2efc..7af29d7 100644
--- a/yt_dlp/Cargo.toml
+++ b/crates/yt_dlp/Cargo.toml
@@ -22,4 +22,4 @@ pyo3 = { version = "0.21.2", features = ["auto-initialize", "gil-refs"] }
 serde = { version = "1.0.203", features = ["derive"] }
 serde_json = "1.0.117"
 url = { version = "2.5.0", features = ["serde"] }
-bytes = {path = "./crates/bytes"}
+bytes = {path = "../bytes"}
diff --git a/yt_dlp/README.md b/crates/yt_dlp/README.md
index 591ef2e..591ef2e 100644
--- a/yt_dlp/README.md
+++ b/crates/yt_dlp/README.md
diff --git a/yt_dlp/cog.toml b/crates/yt_dlp/cog.toml
index 7389072..7389072 100644
--- a/yt_dlp/cog.toml
+++ b/crates/yt_dlp/cog.toml
diff --git a/yt_dlp/src/duration.rs b/crates/yt_dlp/src/duration.rs
index cd7454b..cd7454b 100644
--- a/yt_dlp/src/duration.rs
+++ b/crates/yt_dlp/src/duration.rs
diff --git a/yt_dlp/src/lib.rs b/crates/yt_dlp/src/lib.rs
index 37d0945..37d0945 100644
--- a/yt_dlp/src/lib.rs
+++ b/crates/yt_dlp/src/lib.rs
diff --git a/yt_dlp/src/logging.rs b/crates/yt_dlp/src/logging.rs
index cca917c..cca917c 100644
--- a/yt_dlp/src/logging.rs
+++ b/crates/yt_dlp/src/logging.rs
diff --git a/yt_dlp/src/main.rs b/crates/yt_dlp/src/main.rs
index c40ddc3..c40ddc3 100644
--- a/yt_dlp/src/main.rs
+++ b/crates/yt_dlp/src/main.rs
diff --git a/yt_dlp/src/wrapper/info_json.rs b/crates/yt_dlp/src/wrapper/info_json.rs
index 9c0d464..9c0d464 100644
--- a/yt_dlp/src/wrapper/info_json.rs
+++ b/crates/yt_dlp/src/wrapper/info_json.rs
diff --git a/yt_dlp/src/wrapper/mod.rs b/crates/yt_dlp/src/wrapper/mod.rs
index 3fe3247..3fe3247 100644
--- a/yt_dlp/src/wrapper/mod.rs
+++ b/crates/yt_dlp/src/wrapper/mod.rs
diff --git a/yt_dlp/src/wrapper/yt_dlp_options.rs b/crates/yt_dlp/src/wrapper/yt_dlp_options.rs
index c2a86df..c2a86df 100644
--- a/yt_dlp/src/wrapper/yt_dlp_options.rs
+++ b/crates/yt_dlp/src/wrapper/yt_dlp_options.rs
diff --git a/yt_dlp/update.sh b/crates/yt_dlp/update.sh
index eb9c3c1..eb9c3c1 100755
--- a/yt_dlp/update.sh
+++ b/crates/yt_dlp/update.sh