about summary refs log tree commit diff stats
path: root/crates/yt_dlp
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-16 15:32:28 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-16 15:32:28 +0200
commit3f6ef87fc31581215cb00d56462b35e07b7a1f28 (patch)
tree714c3e93dd411ab16a98acd85bc57837e3635fd2 /crates/yt_dlp
parentchore(version): v1.6.0 (diff)
downloadyt-3f6ef87fc31581215cb00d56462b35e07b7a1f28.zip
fix(yt_dlp/): Include the frozen python stdlib
This avoids the dependency on a real std-library (i.e., python3) at
runtime.
Diffstat (limited to 'crates/yt_dlp')
-rw-r--r--crates/yt_dlp/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml
index 81e1412..3eff9a2 100644
--- a/crates/yt_dlp/Cargo.toml
+++ b/crates/yt_dlp/Cargo.toml
@@ -29,6 +29,7 @@ rustpython = { git = "https://github.com/RustPython/RustPython.git", features =
   "threading",
   "stdlib",
   "stdio",
+  "freeze-stdlib",
   "importlib",
   "ssl",
 ], default-features = false }