From 88db79188c1f773985e63ff7506eb8637e8a2a79 Mon Sep 17 00:00:00 2001 From: Jai A Date: Fri, 28 Jun 2024 16:50:47 -0700 Subject: [PATCH] use rustls --- .github/workflows/run.yml | 2 +- daedalus/Cargo.toml | 2 +- daedalus_client/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 4255e22..fa9e51a 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -48,4 +48,4 @@ jobs: -e CLOUDFLARE_INTEGRATION=$CLOUDFLARE_INTEGRATION \ -e CLOUDFLARE_TOKEN=$CLOUDFLARE_TOKEN \ -e CLOUDFLARE_ZONE_ID=$CLOUDFLARE_ZONE_ID \ - ghcr.io/modrinth/daedalus:latest \ No newline at end of file + ghcr.io/modrinth/daedalus:latest diff --git a/daedalus/Cargo.toml b/daedalus/Cargo.toml index 82e1610..1b28e72 100644 --- a/daedalus/Cargo.toml +++ b/daedalus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daedalus" -version = "0.2.1" +version = "0.2.2" authors = ["Jai A "] edition = "2021" license = "MIT" diff --git a/daedalus_client/Cargo.toml b/daedalus_client/Cargo.toml index c0bdbd2..de3b52c 100644 --- a/daedalus_client/Cargo.toml +++ b/daedalus_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daedalus_client" -version = "0.2.1" +version = "0.2.2" authors = ["Jai A "] edition = "2021" @@ -16,7 +16,7 @@ serde_json = "1.0" serde-xml-rs = "0.6.0" lazy_static = "1.4.0" thiserror = "1.0" -reqwest = { version = "0.12.5", features = ["stream", "json"] } +reqwest = { version = "0.12.5", features = ["stream", "json", "rustls-tls"] } async_zip = { version = "0.0.17", features = ["full"] } semver = "1.0" chrono = { version = "0.4", features = ["serde"] }