diff options
Diffstat (limited to 'crates/yt_dlp/Cargo.toml')
-rw-r--r-- | crates/yt_dlp/Cargo.toml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/crates/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml index 90f2e10..81e1412 100644 --- a/crates/yt_dlp/Cargo.toml +++ b/crates/yt_dlp/Cargo.toml @@ -24,7 +24,15 @@ publish = true [dependencies] indexmap = { version = "2.9.0", default-features = false } log.workspace = true -rustpython = { git = "https://github.com/RustPython/RustPython.git", features = ["threading", "stdlib", "stdio", "importlib", "ssl"], default-features = false } +reqwest = { version = "0.12.20", features = ["blocking", "json"] } +rustpython = { git = "https://github.com/RustPython/RustPython.git", features = [ + "threading", + "stdlib", + "stdio", + "importlib", + "ssl", +], default-features = false } +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true thiserror = "2.0.12" url.workspace = true |