On 2015-05-31 01:37, Danni Coy via Digitalmars-d wrote:
The Standard Library. I want to use D so I can do more with less hours writing code and less hours debugging code. Having a high quality standard library really helps this - unfortunately for me the first thing I needed from the standard library was xml parsing, which the documentation tells me is sub par and will be replaced in the near future, There is no indication of what I might like to use instead. Do I now use one of the other xml libraries floating around, bind a C based one or roll my own.
Use the one in Tango [1] [2]. It's really fast, at least back in the D1 days. Supports both DOM parser, SAX parser and a pull parser
[1] https://github.com/SiegeLord/Tango-D2 [2] http://siegelord.github.io/Tango-D2/ (search for XML) -- /Jacob Carlborg
