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),