From 5cce42ab15b31cffc7032f99309db2480f12c777 Mon Sep 17 00:00:00 2001 From: Arnav Singh Date: Mon, 30 Sep 2024 17:18:25 -0700 Subject: [PATCH] Remove unused dependency. --- Cargo.lock | 1 - azure/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21f483c..e14ec5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,6 @@ dependencies = [ "acme", "anyhow", "base64", - "bytes", "form_urlencoded", "futures-util", "hmac", diff --git a/azure/Cargo.toml b/azure/Cargo.toml index ae34032..6f32092 100644 --- a/azure/Cargo.toml +++ b/azure/Cargo.toml @@ -12,7 +12,6 @@ anyhow = { version = "1", default-features = false, features = [ "std", # for Result<_, E>: anyhow::Context ] } base64 = { version = "0.22", default-features = false } -bytes = { version = "1", default-features = false } form_urlencoded = { version = "1", default-features = false, features = [ "alloc", # "the `alloc` feature must currently be enabled" ] }