1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-06 18:49:09 +00:00
hls_m3u8/CHANGELOG.md

16 lines
556 B
Markdown
Raw Permalink Normal View History

2020-04-22 08:08:32 +00:00
# hls_m3u8
## {next}
* Performance improvements:
+ Changed `MediaPlaylist::segments` from `BTreeMap<usize, MediaSegment>`
to `StableVec<MediaSegment>`
+ Added `perf` feature, which can be used to improve performance in the future
+ Changed all instances of `String` to `Cow<'a, str>` to reduce `Clone`-ing.
* Most structs now implement [`TryFrom<&'a str>`][TryFrom] instead of [`FromStr`][FromStr].
[TryFrom]: https://doc.rust-lang.org/std/convert/trait.TryFrom.html
[FromStr]: https://doc.rust-lang.org/std/str/trait.FromStr.html