From b0366c7b4d0ba188731cec24d40414bb17c44924 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 19 Sep 2024 16:07:59 -0700 Subject: [PATCH] server: try non-https to see if that works --- Cargo.lock | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 142d6e8..7d35878 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "cacher" version = "0.1.0" -source = "git+https://git-private.h.xinu.tv/wathiede/cacher#a6958a92d4631ad66cd580c0b29bf63c62378905" +source = "git+http://git-private.h.xinu.tv/wathiede/cacher#a6958a92d4631ad66cd580c0b29bf63c62378905" dependencies = [ "log", "mime_guess", diff --git a/server/Cargo.toml b/server/Cargo.toml index cf612d2..29c0006 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,7 +13,7 @@ async-graphql = { version = "6.0.11", features = ["log"] } async-graphql-rocket = "6.0.11" async-trait = "0.1.81" build-info = "0.0.38" -cacher = {git = "https://git-private.h.xinu.tv/wathiede/cacher"} +cacher = {git = "http://git-private.h.xinu.tv/wathiede/cacher"} css-inline = "0.13.0" glog = "0.1.0" html-escape = "0.2.13"