diff --git a/Cargo.lock b/Cargo.lock index 4d7cdd5..aa92c93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1162,6 +1162,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.3.1+3.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.104" @@ -1170,6 +1179,7 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" dependencies = [ "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] @@ -1394,7 +1404,6 @@ dependencies = [ "serde_json", "serde_urlencoded", "sync_wrapper 1.0.2", - "system-configuration", "tokio", "tokio-native-tls", "tower-service", @@ -1742,27 +1751,6 @@ dependencies = [ "syn", ] -[[package]] -name = "system-configuration" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" -dependencies = [ - "bitflags", - "core-foundation 0.9.4", - "system-configuration-sys", -] - -[[package]] -name = "system-configuration-sys" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" -dependencies = [ - "core-foundation-sys", - "libc", -] - [[package]] name = "tempfile" version = "3.14.0" diff --git a/crates/churn/Cargo.toml b/crates/churn/Cargo.toml index 811d02a..732bda6 100644 --- a/crates/churn/Cargo.toml +++ b/crates/churn/Cargo.toml @@ -27,5 +27,10 @@ tonic = { version = "0.12.3", features = ["tls", "tls-roots"] } toml = "0.8.19" dirs = "5.0.1" futures = "0.3.31" -reqwest = { version = "0.12.9", features = ["json"] } +reqwest = { version = "0.12.9", default-features = false, features = [ + "json", + "http2", + "charset", + "native-tls-vendored", +] } serde_json = "1.0.133"