diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 13:58:55 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 13:58:55 +0200 |
commit | ab61a4e47a955dd4a5dabeef3ade1b85f6576b84 (patch) | |
tree | 4076a7f96ef2a6b6b359eff83bb9b8c8357a03e5 /crates/yt_dlp/Cargo.toml | |
parent | refactor(yt_dlp/lib): De-duplicate the info json sanitize code (diff) | |
download | yt-ab61a4e47a955dd4a5dabeef3ade1b85f6576b84.zip |
feat(yt_dlp): Support a DeArrow post processor
Diffstat (limited to 'crates/yt_dlp/Cargo.toml')
-rw-r--r-- | crates/yt_dlp/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml index 90f2e10..e5d14fd 100644 --- a/crates/yt_dlp/Cargo.toml +++ b/crates/yt_dlp/Cargo.toml @@ -24,7 +24,9 @@ publish = true [dependencies] indexmap = { version = "2.9.0", default-features = false } log.workspace = true +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 |