about summary refs log tree commit diff stats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Cargo.toml23
1 files changed, 10 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 470eb58..71b3da2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,17 +11,17 @@
 [workspace]
 resolver = "2"
 members = [
-  "crates/bytes",
-  "crates/yt_dlp",
+  "crates/colors",
   "crates/libmpv2",
   "crates/libmpv2/libmpv2-sys",
   "crates/termsize",
   "crates/yt",
+  "crates/yt_dlp",
 ]
 
 [workspace.package]
 edition = "2024"
-version = "1.5.0"
+version = "1.9.0"
 rust-version = "1.85.0"
 authors = ["Benedikt Peetz <benedikt.peetz@b-peetz.de>"]
 repository = "https://git.vhack.eu/soispha/clients/yt"
@@ -31,17 +31,18 @@ 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" }
+colors = { path = "./crates/colors" }
 
 # Shared
-log = "0.4.27"
-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 = [
+pyo3 = { version = "0.27.1", features = ["macros"], default-features = false }
+log = { version = "0.4.28", features = ["kv"] }
+serde = { version = "1.0.228", features = ["derive"] }
+serde_json = "1.0.145"
+url = { version = "2.5.7", features = ["serde"] }
+tokio = { version = "1.48.0", features = [
   "rt-multi-thread",
   "macros",
   "process",
@@ -59,10 +60,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"