diff options
Diffstat (limited to 'crates/yt_dlp')
-rw-r--r-- | crates/yt_dlp/Cargo.toml | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/crates/yt_dlp/Cargo.toml b/crates/yt_dlp/Cargo.toml index 6cedf5b..0f1d248 100644 --- a/crates/yt_dlp/Cargo.toml +++ b/crates/yt_dlp/Cargo.toml @@ -11,15 +11,28 @@ [package] name = "yt_dlp" description = "A wrapper around the python yt_dlp library" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +keywords = [] +categories = [] +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true +publish = false [dependencies] -log = "0.4.22" -pyo3 = { version = "0.22.2", features = ["auto-initialize", "gil-refs"] } -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.128" -url = { version = "2.5.2", features = ["serde"] } -bytes = { path = "../bytes" } +pyo3 = { version = "0.22.4", features = ["auto-initialize", "gil-refs"] } +bytes.workspace = true +log.workspace = true +serde.workspace = true +serde_json.workspace = true +url.workspace = true + +[dev-dependencies] + +[lints] +workspace = true + +[package.metadata.docs.rs] +all-features = true |