Daniel Tashjian
Daniel Tashjian
I am also running into library compatibility issues due to `sqlx::Error` not being `Clone`. I tried wrapping it in an `Arc` but that doesn't work for my use case. I...
@abonander I also have an issue open with the offending library to remove the requirement on `Clone` precisely because so many errors aren't `Clone` (they have another transitive dependency on...
Maybe supporting a feature flag to enable cloneable errors is a good compromise? I don't find "other libraries aren't doing it" to be a convincing argument.
IMO, the extra effort of having to write an additional import is worth the flexibility of being able to define your own implementations of functions. I can imagine a case...
@frewsxcv In the following example, it prints 0 or 1 depending on which trait you import: ```rust struct MyStruct { val: u32 } trait Trait1 { fn get_val(&self) -> u32;...
@frewsxcv I see, thanks!
WIP: https://github.com/iheartradio/open-m3u8/tree/validation
I apologize for not getting back to you sooner, my life is very hectic at the moment. You are correct, setting `withIsOngoing(true)` should prevent the writer from writing the `EXT-X-ENDLIST`...
@Varun9160 Our approach to non-standard tags is to allow support, but deprecate them and / or make it disabled by default. It is my opinion that there is too much...
The regexes look good. I would add an `allowWhitespaceInTags` flag in `ParsingMode` and set it to true for the `LENIENT` constant. At this point I'm considering making `LENIENT` the default.