From 96aa83dbfc4a581f54ca76475069f519ec2e8dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sat, 14 Jan 2023 21:52:51 +0100 Subject: [PATCH] fix: switch to cloudflare fork that actually parses API responses --- Cargo.lock | 7 +++---- Cargo.toml | 5 +++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b6b0e0..779cb0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,8 +98,7 @@ dependencies = [ [[package]] name = "cloudflare" version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0778f99ea7ad39b49b758eb418da7117b93232a5f6a09f9b79a094b77ac88cc2" +source = "git+https://github.com/jcgruenhage/cloudflare-rs.git?branch=make-owner-fields-optional#02397fc4211886548a31a0731b240f2e17309de4" dependencies = [ "anyhow", "async-trait", @@ -1166,9 +1165,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.23.0" +version = "1.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46" +checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index b9ffc04..ea7ccfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,7 @@ serde = { version = "1.0.152", features = ["derive"] } anyhow = "1.0.68" env_logger = "0.10.0" log = "0.4.17" -tokio = { version = "1.23.0", features = ["time", "macros", "rt-multi-thread"] } +tokio = { version = "1.24.1", features = ["time", "macros", "rt-multi-thread"] } serde_yaml = "0.9.16" -cloudflare = "0.10.1" +#cloudflare = "0.10.1" +cloudflare = { git = "https://github.com/jcgruenhage/cloudflare-rs.git", branch = "make-owner-fields-optional" }