Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nick42d committed Aug 28, 2024
1 parent 2684fe9 commit aac03d7
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 52 deletions.
107 changes: 65 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions json-crawler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ repository = "https://github.com/nick42d/youtui"
readme = "README.md"

[dependencies]
serde = "1.0.204"
serde_json = "1.0.122"
serde = "1.0.209"
serde_json = "1.0.127"
10 changes: 5 additions & 5 deletions youtui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ categories = ["multimedia::audio"]
rust-version = "1.79"

[dependencies]
clap = { version = "4.5.7", features = ["derive"] }
clap = { version = "4.5.16", features = ["derive"] }
crossterm = { version = "0.28.1", features = ["event-stream"] }
futures = "0.3.30"
ratatui = { version = "0.28.0", features = ["all-widgets"] }
serde = "1.0.203"
serde_json = "1.0.117"
tokio = "1.38.0"
serde = "1.0.209"
serde_json = "1.0.127"
tokio = "1.39.3"
ytmapi-rs = { path = "../ytmapi-rs", version = "0.0.12", default-features = false, features = [
"rustls-tls",
"simplified-queries",
Expand All @@ -32,7 +32,7 @@ tui-logger = { version = "0.12.0", features = [
] }
directories = "5.0.1"
gag = "1.0.0"
toml = "0.8.14"
toml = "0.8.19"
# For intersperse feature. RFC in progress to bring to std
# https://github.com/rust-lang/rust/issues/79524
itertools = "0.13.0"
Expand Down
6 changes: 3 additions & 3 deletions ytmapi-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ readme = "README.md"
exclude = ["test_json/*"]

[dependencies]
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.39.3", features = ["full"] }
# To allow alternative TLS options, we need to opt out of a single reqwest feature.
# This isn't possible in Cargo, so we need to opt back into the other default features.
# https://github.com/rust-lang/cargo/issues/3126
# As of 26/4/24 the following are reqwest default features:
# http2, default-tls, charset
reqwest = { version = "0.12.4", features = [
reqwest = { version = "0.12.7", features = [
"json",
"http2",
"charset",
], default-features = false }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde_json = "1.0.127"
json-crawler = { version = "0.0.1", path = "../json-crawler" }
sha1 = "0.10.6"
tokio-stream = "0.1.15"
Expand Down

0 comments on commit aac03d7

Please sign in to comment.