-
Performance improvements:
- Changed
MediaPlaylist::segments
fromBTreeMap<usize, MediaSegment>
toStableVec<MediaSegment>
- Added
perf
feature, which can be used to improve performance in the future - Changed all instances of
String
toCow<'a, str>
to reduceClone
-ing.
- Changed
-
Most structs now implement
TryFrom<&'a str>
instead ofFromStr
.