diff options
Diffstat (limited to 'crates/yt_dlp/Cargo.toml')
| -rw-r--r-- | crates/yt_dlp/Cargo.toml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/crates/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml index a948a34..eb2924d 100644 --- a/crates/yt_dlp/Cargo.toml +++ b/crates/yt_dlp/Cargo.toml @@ -10,7 +10,7 @@ [package] name = "yt_dlp" -description = "A wrapper around the python yt_dlp library" +description = "A rust ffi wrapper library for the python yt_dlp library" keywords = [] categories = [] version.workspace = true @@ -19,19 +19,18 @@ authors.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true -publish = false +publish = true [dependencies] -pyo3 = { version = "0.23.4", features = ["auto-initialize"] } -bytes.workspace = true +curl = "0.4.49" log.workspace = true -serde.workspace = true +pyo3 = { workspace = true } +pyo3-pylogger = { path = "crates/pyo3-pylogger" } +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true +thiserror = "2.0.17" url.workspace = true -[dev-dependencies] -tokio.workspace = true - [lints] workspace = true |
