Remove the TypedBuilder attribute fromm the TrackMetadata

This commit is contained in:
Anas Elgarhy 2023-02-04 22:15:32 +02:00
parent d3ae9f809b
commit 5873c99924
No known key found for this signature in database
GPG Key ID: 0501802A1D496528
1 changed files with 1 additions and 1 deletions

View File

@ -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<String, String>,
}