diff --git a/Cargo.lock b/Cargo.lock index 26a51e950..34c611e52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4484,9 +4484,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "reqwest" -version = "0.11.20" +version = "0.11.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" +checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" dependencies = [ "base64 0.21.4", "bytes", @@ -4510,6 +4510,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", + "system-configuration", "tokio", "tokio-rustls", "tower-service", diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index 6289cba3b..164fc7235 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -19,7 +19,7 @@ exocore-protos = {version = "0.1.25", path = "../../protos"} exocore-store = {version = "0.1.25", path = "../../store"} futures = "0.3.28" log = "0.4.20" -reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"] } thiserror = "1.0.49" [target."cfg(any( all(target_arch = \"x86_64\", any(target_os = \"linux\", target_os = \"macos\", target_os = \"windows\")), all(target_arch = \"aarch64\", any(target_os = \"linux\", target_os = \"macos\")) ))".dependencies] diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 531ac1bd0..a4c912d46 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -20,7 +20,7 @@ chrono = { version = "0.4.31", features = ["serde"] } futures = "0.3.28" log = "0.4.20" rand = "0.8" -reqwest = { version = "0.11.20", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls"] } serde = "1.0.188" serde_derive = "1.0.188" serde_json = "1.0.107" diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 0e651bd87..fb592c223 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -28,7 +28,7 @@ indicatif = "0.17.7" log = "0.4.20" log4rs = "1.2.0" rand = "0.8" -reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"] } serde = "1.0.188" serde_derive = "1.0.188" serde_json = "1.0.107"