diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml index 27d9c05..963a877 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,13 +15,14 @@ members = [ "crates/yt_dlp", "crates/libmpv2", "crates/libmpv2/libmpv2-sys", - "yt", + "crates/termsize", + "crates/yt", ] [workspace.package] -edition = "2021" -version = "1.4.0" -rust-version = "1.80.0" +edition = "2024" +version = "1.7.1" +rust-version = "1.85.0" authors = ["Benedikt Peetz <benedikt.peetz@b-peetz.de>"] repository = "https://git.vhack.eu/soispha/clients/yt" license = "GPL-3.0-or-later" @@ -32,13 +33,15 @@ description = "A fully featured command line YouTube client" 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.22" -serde = { version = "1.0.216", features = ["derive"] } -serde_json = "1.0.133" +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.42.0", features = [ +tokio = { version = "1.45.1", features = [ "rt-multi-thread", "macros", "process", @@ -56,6 +59,10 @@ 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" |