fix: switch to cloudflare fork that actually parses API responses

This commit is contained in:
Jan Christian Grünhage 2023-01-14 21:52:51 +01:00
parent 8cd963ad59
commit 96aa83dbfc
Signed by: jcgruenhage
GPG key ID: EEC1170CE56FA2ED
2 changed files with 6 additions and 6 deletions

7
Cargo.lock generated
View file

@ -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",

View file

@ -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" }