From eabcc94cbcb27319e5be2ccab714b644f669a65e Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 20 Jan 2025 20:35:56 -0500 Subject: [PATCH] Remove `Serde` derives from Git reference type (#10798) --- crates/uv-git/src/git.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/uv-git/src/git.rs b/crates/uv-git/src/git.rs index f29508042..4bb0623e0 100644 --- a/crates/uv-git/src/git.rs +++ b/crates/uv-git/src/git.rs @@ -41,9 +41,7 @@ pub static GIT: LazyLock> = LazyLock::new(|| { }); /// A reference to commit or commit-ish. -#[derive( - Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, serde::Serialize, serde::Deserialize, -)] +#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] pub enum GitReference { /// A specific branch. Branch(String),