diff --git a/rsget_cli/Cargo.toml b/rsget_cli/Cargo.toml index 1ef10b3..57cb80a 100644 --- a/rsget_cli/Cargo.toml +++ b/rsget_cli/Cargo.toml @@ -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" diff --git a/rsget_lib/Cargo.toml b/rsget_lib/Cargo.toml index 6baf1d7..40b41d5 100644 --- a/rsget_lib/Cargo.toml +++ b/rsget_lib/Cargo.toml @@ -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 = [] diff --git a/stream_lib/Cargo.toml b/stream_lib/Cargo.toml index 3555d0c..1428c4c 100644 --- a/stream_lib/Cargo.toml +++ b/stream_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stream_lib" -version = "0.4.1" +version = "0.5.0" authors = ["Valdemar Erk "] description = "Tool to download differnt types of streams" license = "ISC" @@ -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"