diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | crates/yt_dlp/Cargo.toml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2e7b2cc..6aa53ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2890,6 +2890,8 @@ version = "0.4.0" source = "git+https://github.com/RustPython/RustPython.git#c968fe0fd9d7466dc9d5d97e973b82ba35e516d8" dependencies = [ "glob", + "rustpython-compiler-core", + "rustpython-derive", ] [[package]] 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 } |