diff options
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index a75f599..c4eac09 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -12,7 +12,7 @@ pub struct DirectoryInfo { pub struct ItemInfo { pub title: String, pub duration: f64, // in seconds - pub tracks: BTreeMap<u64, SourceTrack>, + pub tracks: BTreeMap<usize, SourceTrack>, } #[derive(Debug, Clone, Deserialize, Serialize)] |