From 5873c99924bb6e034d9a780e5ef61873c66a9476 Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Sat, 4 Feb 2023 22:15:32 +0200 Subject: [PATCH] Remove the TypedBuilder attribute fromm the TrackMetadata --- src/cmus/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmus/mod.rs b/src/cmus/mod.rs index 30a0717..e86004b 100644 --- a/src/cmus/mod.rs +++ b/src/cmus/mod.rs @@ -3,7 +3,7 @@ use std::num::ParseIntError; use std::str::FromStr; use typed_builder::TypedBuilder; -#[derive(Debug, PartialEq, TypedBuilder)] +#[derive(Debug, PartialEq)] pub struct TrackMetadata { tags: HashMap, }