diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index db7379e2..ef0822f7 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1181,7 +1181,7 @@ dependencies = [ "pretty_env_logger", "regex", "remove-markdown-links", - "reqwest 0.11.27", + "reqwest 0.12.4", "semver", "sentry", "sentry-log", @@ -1681,6 +1681,25 @@ dependencies = [ "tracing", ] +[[package]] +name = "h2" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.0.0", + "indexmap 2.2.5", + "slab", + "tokio", + "tokio-util", + "tracing", +] + [[package]] name = "hashbrown" version = "0.12.3" @@ -1850,7 +1869,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2", + "h2 0.3.20", "http 0.2.9", "http-body 0.4.5", "httparse", @@ -1873,6 +1892,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", + "h2 0.4.5", "http 1.0.0", "http-body 1.0.0", "httparse", @@ -3589,7 +3609,7 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2", + "h2 0.3.20", "http 0.2.9", "http-body 0.4.5", "hyper 0.14.27", @@ -3628,9 +3648,11 @@ checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" dependencies = [ "base64 0.22.0", "bytes", + "encoding_rs", "futures-channel", "futures-core", "futures-util", + "h2 0.4.5", "http 1.0.0", "http-body 1.0.0", "http-body-util", @@ -3650,6 +3672,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "sync_wrapper", + "system-configuration", "tokio", "tokio-native-tls", "tower-service", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c9a559a7..1dd29828 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -41,7 +41,7 @@ regex = "1.10" # Read out running application process names sysinfo = "0.30.12" # HTTP requests -reqwest = { version = "0.11", features = ["blocking"] } +reqwest = { version = "0.12", features = ["blocking"] } # Persistent store for settings tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } # JSON5 parsing support (allows comments in JSON)