audiot_core 0.2.0

Library that helps build the search database through the CLI, and eventually can be used to read data from that same database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

use crate::brainz::ArtistReference;

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ArtistCredit {
    #[serde(default)]
    pub joinphrase: Option<String>,
    #[serde(default)]
    pub name: Option<String>,
    #[serde(default)]
    pub artist: Option<ArtistReference>,
}