I ran into DateFormatter/ISO8601DateFormatter speed issues again, and wrote a faster timestamp parser in Swift: https://github.com/juri/Parse3339
@juri Very fun! Since you mentioned liking parser combinators in your post, we thought it'd be fun to share how our Parsing library performed alongside yours: https://github.com/pointfreeco/swift-parsing/pull/305
It's nice to see how well combinators performed, though your library does win the photo finish 😉, and of course your goal of having a drop-in file with no other dependencies is far different from bringing in a whole parsing library.