Skip to content

Commit

Permalink
Cargo update Deps (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaan26 authored Dec 20, 2024
2 parents a1489a6 + e4e994b commit 81b9b93
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions zung_mini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
10 changes: 5 additions & 5 deletions zung_parsers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
16 changes: 8 additions & 8 deletions zung_torrent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 81b9b93

Please sign in to comment.