mirror of
https://github.com/sile/hls_m3u8.git
synced 2024-11-21 23:01:00 +00:00
556 B
556 B
hls_m3u8
{next}
-
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
.