From 97e8becc8c9198d4b63f536149af1e1d030d5526 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 30 Jan 2024 07:28:05 -0500 Subject: [PATCH] Use rustls with request for self-contained build --- avenger-vega/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avenger-vega/Cargo.toml b/avenger-vega/Cargo.toml index f1f14e0..bcf6654 100644 --- a/avenger-vega/Cargo.toml +++ b/avenger-vega/Cargo.toml @@ -17,5 +17,5 @@ serde_json = { version = "1.0.111" } lyon_extra = { workspace = true } lyon_path = { workspace = true, features = ["serialization"]} image = { workspace = true, default-features = false, features = ["png"] } -reqwest = { version = "0.11.23", features = ["blocking"], optional = true } -pyo3 = { workspace = true, optional = true } \ No newline at end of file +reqwest = { version = "0.11.23", features = ["blocking", "rustls"], optional = true } +pyo3 = { workspace = true, optional = true }