diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-10 16:44:08 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-10 16:44:08 +0200 |
commit | 72445e192409d6d628f9af91fa08f3a69c02e459 (patch) | |
tree | e444858dbad25e11296498c33a78e661e88f258c | |
parent | build(Cargo.lock): Update (diff) | |
download | yt-72445e192409d6d628f9af91fa08f3a69c02e459.zip |
build(Cargo.toml): Update to include new changes
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml index 963a877..64b8091 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ [workspace] resolver = "2" members = [ - "crates/bytes", "crates/yt_dlp", "crates/libmpv2", "crates/libmpv2/libmpv2-sys", @@ -31,17 +30,17 @@ description = "A fully featured command line YouTube client" [workspace.dependencies] # Own Crates yt_dlp = { path = "./crates/yt_dlp" } -bytes = { path = "./crates/bytes" } libmpv2 = { path = "./crates/libmpv2" } termsize = { path = "./crates/termsize" } uu_fmt = { path = "./crates/fmt" } # Shared -log = "0.4.27" +pyo3 = { version = "0.25.1", features = ["macros"], default-features = false } +log = {version = "0.4.27", features = ["kv"]} serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" url = { version = "2.5.4", features = ["serde"] } -tokio = { version = "1.45.1", features = [ +tokio = { version = "1.46.1", features = [ "rt-multi-thread", "macros", "process", @@ -59,10 +58,6 @@ codegen-units = 1 panic = "abort" split-debuginfo = "off" -[profile.dev] -# Otherwise, yt_dlp is just too slow -opt-level = 2 - [workspace.lints.rust] # rustc lint groups https://doc.rust-lang.org/rustc/lints/groups.html warnings = "warn" |