From 6f5f43419beed1a063279a231eab43606d5e201c Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Thu, 25 Jan 2024 17:04:27 -0500 Subject: [PATCH] =?UTF-8?q?pd:=20=F0=9F=91=8B=20remove=20unused=20axum=20d?= =?UTF-8?q?ependency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit we call into axum via axum-server for now, so we don't need this dependency. (...yet) --- Cargo.lock | 1 - crates/bin/pd/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04631aaff0..e06f30b73e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4737,7 +4737,6 @@ dependencies = [ "async-stream 0.2.1", "async-trait", "atty", - "axum 0.6.20", "axum-server", "base64 0.20.0", "bincode", diff --git a/crates/bin/pd/Cargo.toml b/crates/bin/pd/Cargo.toml index 382c4b9bdc..091da7a5c6 100644 --- a/crates/bin/pd/Cargo.toml +++ b/crates/bin/pd/Cargo.toml @@ -125,7 +125,6 @@ clap = { version = "3", features = ["derive", "env"] } atty = "0.2" fs_extra = "1.3.0" -axum = { version = "0.6.20", features = ["tokio", "http2"] } axum-server = { version = "0.4.7", features = ["tls-rustls"] } rustls = "0.20.9" rustls-acme = { version = "0.6.0", features = ["axum"] }