file-uri: File URI parsing

[ bsd3, library, system ] [ Propose Tags ]

Parses file URIs based on RFC 8089, including windows filepaths.


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0
Change log CHANGELOG.md
Dependencies attoparsec (>=0.13.1.0), base (>=4.12.0.0 && <4.20), bytestring (>=0.9.1) [details]
License BSD-3-Clause
Copyright Julian Ospald 2024
Author Julian Ospald
Maintainer hasufell@posteo.de
Revised Revision 2 made by maerwald at 2024-01-19T15:25:19Z
Category System
Source repo head: git clone https://github.com/hasufell/file-uri.git
Uploaded by maerwald at 2024-01-19T15:14:31Z
Distributions NixOS:0.1.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 97 total (24 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for file-uri-0.1.0.0

[back to package description]

file-uri

This Haskell library parses file:///foo/bar URIs based on RFC 8089, including windows filepaths. It's a subset of RFC3986, but is better at interpreting the filepaths (especially on windows).

Part of the code is based on uri-bytestring from Soostone.