From e4e994b1c8afaae5f79b54ef4bff0a8f86f1f827 Mon Sep 17 00:00:00 2001 From: Ishaan Goel Date: Fri, 20 Dec 2024 11:15:57 +0530 Subject: [PATCH] cargo upgrade deps --- Cargo.toml | 8 ++++---- zung_mini/Cargo.toml | 4 ++-- zung_parsers/Cargo.toml | 10 +++++----- zung_torrent/Cargo.toml | 16 ++++++++-------- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 04c04c1..2dca91c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ zung_mini = { version = "0.4.0", path = "./zung_mini" } zung_parsers = { version = "0.1.1", path = "./zung_parsers" } zung_torrent = { version = "0.1.0", path = "./zung_torrent" } -anyhow = "1.0.89" -anstyle = "1.0.8" -clap = { version = "4.5.20", features = ["derive"] } -tokio = "1.41.1" +anyhow = "1.0.94" +anstyle = "1.0.10" +clap = { version = "4.5.23", features = ["derive"] } +tokio = "1.42.0" [profile.release] diff --git a/zung_mini/Cargo.toml b/zung_mini/Cargo.toml index 266b921..94452d1 100644 --- a/zung_mini/Cargo.toml +++ b/zung_mini/Cargo.toml @@ -10,8 +10,8 @@ readme = "README.md" keywords = ["projects", "learning", "mini"] [dependencies] -clap = { version = "4.5.20", features = ["derive"] } +clap = { version = "4.5.23", features = ["derive"] } indicatif = "0.17" -colored = "2.1.0" +colored = "2.2.0" rand = "0.8" prettytable = "0.10.0" diff --git a/zung_parsers/Cargo.toml b/zung_parsers/Cargo.toml index 45587ad..63fd9b7 100644 --- a/zung_parsers/Cargo.toml +++ b/zung_parsers/Cargo.toml @@ -10,11 +10,11 @@ readme = "README.md" keywords = ["projects", "learning", "mini"] [dependencies] -anyhow = "1.0.89" -bytes = { version = "1.7.2", features = ["serde"] } -clap = { version = "4.5.18", features = ["derive"] } -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.128" +anyhow = "1.0.94" +bytes = { version = "1.9.0", features = ["serde"] } +clap = { version = "4.5.23", features = ["derive"] } +serde = { version = "1.0.216", features = ["derive"] } +serde_json = "1.0.133" serde_yaml = "0.9.34" toml = "0.8.19" hex = "0.4.3" diff --git a/zung_torrent/Cargo.toml b/zung_torrent/Cargo.toml index 1e55eab..abf9682 100644 --- a/zung_torrent/Cargo.toml +++ b/zung_torrent/Cargo.toml @@ -14,22 +14,22 @@ default = ["client"] client = ["dep:colored", "dep:human_bytes"] [dependencies] -anyhow = "1.0.89" -bytes = { version = "1.7.2", features = ["serde"] } -clap = { version = "4.5.18", features = ["derive"] } +anyhow = "1.0.94" +bytes = { version = "1.9.0", features = ["serde"] } +clap = { version = "4.5.23", features = ["derive"] } hex = "0.4.3" -chrono = { version = "0.4.38", features = ["serde"] } +chrono = { version = "0.4.39", features = ["serde"] } sha1_smol = "1.0.1" rayon = "1.10.0" -indexmap = "2.6.0" +indexmap = "2.7.0" rand = "0.8.5" -tokio = { version = "1.41.1", features = ["full"] } +tokio = { version = "1.42.0", features = ["full"] } -colored = { version = "2.1.0", optional = true } +colored = { version = "2.2.0", optional = true } human_bytes = { version = "0.4.3", optional = true } -serde = { version = "1.0.210", features = ["derive"] } +serde = { version = "1.0.216", features = ["derive"] } serde_bytes = "0.11.15" serde_urlencoded = "0.7.1"