From 77ab8f3e9cc42c213800c01c68e9ad4061e4a18a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 3 Jun 2024 15:02:26 -0400 Subject: [PATCH] Drop unnecessary constants Signed-off-by: Colin Walters --- src/imageproxy.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/imageproxy.rs b/src/imageproxy.rs index 55c08f1..48e363c 100644 --- a/src/imageproxy.rs +++ b/src/imageproxy.rs @@ -25,9 +25,6 @@ use tracing::instrument; /// Re-export because we use this in our public APIs pub use oci_spec; -pub const OCI_TYPE_LAYER_GZIP: &str = "application/vnd.oci.image.layer.v1.tar+gzip"; -pub const OCI_TYPE_LAYER_TAR: &str = "application/vnd.oci.image.layer.v1.tar"; - /// File descriptor range which is reserved for passing data down into the proxy; /// avoid configuring the command to use files in this range. (Also, stdin is /// reserved)