about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml11
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"