A small URI parser that parses URIs after RFC3986.
NOTICE: THIS LIBRARY IS DEPRECATED!
This library is now part of zigstd
library, available asstd.Uri
since 87b2234.
var link = try uri.parse("https://github.com/MasterQ32/zig-uri");
// link.scheme == "https"
// link.host == "github.com"
// link.path == "/MasterQ32/zig-uri"