From 80062daa56fb9dbbcd13c6db4ea6bf1418927d81 Mon Sep 17 00:00:00 2001 From: "Leon Yang (Containers)" Date: Thu, 14 Nov 2024 11:30:02 -0800 Subject: [PATCH] Upgrade pingora to 0.4.0 Summary: pingora has merged the pending pull request and cut a new release 0.4.0. Use that instead of depending on the old git hash. The new release introduces rustls which will be useful since we don't need to depend on libssl which does not work inside VMs. However, building rustls fails on some architectures. Since there is no immediate use of tls in pingora at the moment, I will leave it out. Once it's needed, we will just need to add pingora-rustls to Cargo.toml and figure out a why to make build work. Reviewed By: chengxiong-ruan Differential Revision: D65950550 fbshipit-source-id: 8ffec0f3baf38b7cc62bf9b5cfb7653adca9d5e1 --- Cargo.toml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b7852903c..c16318eb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,17 +11,6 @@ imgui-sys = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "2abba18c0 lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "fdbf843d174c6796d736b2b61dab0297670390f8" } perf-event = { version = "0.4", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" } perf-event-open-sys = { version = "4.0", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" } -pingora-cache = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-core = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-error = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-header-serde = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-http = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-lru = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-openssl = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-pool = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-proxy = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-runtime = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } -pingora-timeout = { git = "https://github.com/cloudflare/pingora.git", rev = "aa37d5448746e80f871c444cf6a6e2e1c599b5fd" } plexi-core = { git = "https://github.com/haochenuw/plexi", rev = "a0326d9802a594ca5382b075620135607e1cdb23" } pyo3-build-config = { package = "pyo3-build-config", version = "0.21.2", git = "https://github.com/fbsource/pyo3", rev = "ff94a09031cc29d88d57ae3c846e5b871497aeb9" } quickcheck = { git = "https://github.com/jakoschiko/quickcheck", rev = "6ecdf5bb4b0132ce66670b4d46453aa022ea892c" }