Crate auri

Source
Expand description

I couldn’t find any URI library that does all of these things:

  • construct URI from parts and serialize it
  • construct querystring from parts and make it part of URI Also, I may want relative paths, too?

Modules§

path
ppath
Paths independent of the local file system (pure functions). E.g. for use in web applications. Does not (currently, anyway) concern itself with handling “..” or “.”, i.e. does not offer canonicalization.–change?
url_encoding

Structs§

AUriLocal
A URI without a scheme or authority part; i.e. relative or absolute path
QueryString
Simple representation of query strings (are nested representations even supported by browsers?). So far just for constructing the serialized representation.

Enums§

AUri

Traits§

ToVecKeyVal