Skip to content

Commit

Permalink
publish(stream_lib): 0.5
Browse files Browse the repository at this point in the history
- Updates reqwest to 0.12
  • Loading branch information
Erk- committed Jul 7, 2024
1 parent 6c5f2ae commit 4b16aa5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions rsget_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ repository = "https://github.com/Erk-/rsget/tree/master/rsget_cli"

[dependencies]
rsget_lib = { version = "0.3", path = "../rsget_lib" }
stream_lib = { version = "0.4", path = "../stream_lib" }
stream_lib = { version = "0.5", path = "../stream_lib" }
tracing = "0.1"
tracing-subscriber = "0.3.18"
clap = { version = "4.4.11", features = ["derive"] }
tokio = { version = "1", features = ["fs", "rt-multi-thread", "io-util", "io-std"] }
reqwest = "0.11"
reqwest = "0.12"
indicatif = "0.17.7"
futures-util = "0.3.30"

Expand Down
4 changes: 2 additions & 2 deletions rsget_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ regex = "1.10"
http = "0.2.11"
chrono = "0.4"
hls_m3u8 = "0.4"
reqwest = { version = "0.11", features = ["json"] }
reqwest = { version = "0.12", features = ["json"] }
rand = { version ="0.8", features = ["small_rng"] }
async-trait = "0.1"
webbrowser = "0.8"

[dependencies.stream_lib]
default-features = false
version = "0.4.1"
version = "0.5.0"
path = "../stream_lib"
features = []
4 changes: 2 additions & 2 deletions stream_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stream_lib"
version = "0.4.1"
version = "0.5.0"
authors = ["Valdemar Erk <cargo@erk.dev>"]
description = "Tool to download differnt types of streams"
license = "ISC"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/Erk-/rsget/tree/master/stream_lib"

[dependencies]
hls_m3u8 = "0.4.1"
reqwest = { version = "0.11.22", features = ["stream"] }
reqwest = { version = "0.12.5", features = ["stream"] }
tracing = "0.1.40"
url = "2.5.0"
futures-util = "0.3.30"
Expand Down

0 comments on commit 4b16aa5

Please sign in to comment.