Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 517 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 517 Bytes

Zig URI Parser

A small URI parser that parses URIs after RFC3986.

NOTICE: THIS LIBRARY IS DEPRECATED!
This library is now part of zig std library, available as std.Uri since 87b2234.

Usage Example

var link = try uri.parse("https://github.com/MasterQ32/zig-uri");
// link.scheme == "https"
// link.host   == "github.com"
// link.path   == "/MasterQ32/zig-uri"