Closed andre2007 closed 5 years ago
Dustmite is great, std.regex is the issue:
// FIXME: I don't think this class correctly decodes/encodes the individual parts
/// Represents a url that can be broken down or built up through properties
struct Uri {
void reparse() {
import std.regex;
regex("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?");
// uriInvalidated = false;
}
}
I have been kinda wanting to remove that regex anyway - std.regex consistently sees compile performance regressions and it is making my builds exceedingly slow :(
I try to compile a server application with musl. Linker fail, just by adding dub dependency to arsd-official:cgi.
My test application
I compile the application from windows using WSL (Ubuntu) with following command