diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 6f7e1d4b..0e816177 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1181,7 +1181,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.8", "indexmap", "slab", "tokio", @@ -1205,7 +1205,7 @@ dependencies = [ "bitflags", "bytes", "headers-core", - "http", + "http 0.2.8", "httpdate", "mime", "sha1", @@ -1217,7 +1217,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http", + "http 0.2.8", ] [[package]] @@ -1298,6 +1298,17 @@ dependencies = [ "itoa 1.0.5", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa 1.0.5", +] + [[package]] name = "http-body" version = "0.4.5" @@ -1305,7 +1316,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.8", "pin-project-lite", ] @@ -1338,7 +1349,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.8", "http-body", "httparse", "httpdate", @@ -1717,7 +1728,7 @@ dependencies = [ "thiserror", "time", "tokio", - "tokio-tungstenite 0.19.0", + "tokio-tungstenite 0.21.0", "url", "warp", "window-shadows", @@ -1807,7 +1818,7 @@ dependencies = [ "bytes", "encoding_rs", "futures-util", - "http", + "http 0.2.8", "httparse", "log", "memchr", @@ -2583,7 +2594,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.8", "http-body", "hyper", "hyper-tls", @@ -3187,7 +3198,7 @@ dependencies = [ "glob", "gtk", "heck 0.4.0", - "http", + "http 0.2.8", "ignore", "objc", "once_cell", @@ -3285,7 +3296,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43" dependencies = [ "gtk", - "http", + "http 0.2.8", "http-range", "rand 0.8.5", "raw-window-handle", @@ -3521,16 +3532,16 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" +checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" dependencies = [ "futures-util", "log", "native-tls", "tokio", "tokio-native-tls", - "tungstenite 0.19.0", + "tungstenite 0.21.0", ] [[package]] @@ -3683,7 +3694,7 @@ dependencies = [ "base64 0.13.1", "byteorder", "bytes", - "http", + "http 0.2.8", "httparse", "log", "rand 0.8.5", @@ -3695,14 +3706,14 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" +checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 1.0.0", "httparse", "log", "native-tls", @@ -3887,7 +3898,7 @@ dependencies = [ "futures-channel", "futures-util", "headers", - "http", + "http 0.2.8", "hyper", "log", "mime", @@ -4467,7 +4478,7 @@ dependencies = [ "glib", "gtk", "html5ever 0.25.2", - "http", + "http 0.2.8", "kuchiki", "libc", "log", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bf78fc71..23a17716 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -18,7 +18,7 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } window-shadows = "0.2.1" tokio = { version = "1.29", features = ["full"] } -tokio-tungstenite = { version = "0.19", features = ["native-tls"] } +tokio-tungstenite = { version = "0.21", features = ["native-tls"] } anyhow = "1.0" rand = "0.8" futures-util = "0.3"