packages feed

uri 0.1.5 → 0.1.6

raw patch · 2 files changed

+3/−3 lines, 2 files

Files

Text/URI.hs view
@@ -295,7 +295,7 @@ 	return (authorityV, pathV)  -- Path parser-pathP = pathRootlessP <|> pathAbsoluteP <|> pathNoSchemeP <|> pathABEmptyP <|> pathEmptyP+pathP = (try pathRootlessP) <|> try pathAbsoluteP <|> try pathNoSchemeP <|> try pathABEmptyP <|> try pathEmptyP  pathABEmptyP = do 	segs <- many $ do@@ -344,7 +344,7 @@ 		portP) 	return (userinfoV, Just hostV, portV) -hostP = ipLiteralP <|> ipv4AddressP <|> regNameP+hostP = ipLiteralP <|> try ipv4AddressP <|> regNameP  -- ip v6+ parser ipLiteralP = do
uri.cabal view
@@ -1,5 +1,5 @@ Name: uri-Version: 0.1.5+Version: 0.1.6 Synopsis: Library for working with URIs Category: Text Description: Library for working with URIs, including parsing, rendering, merging, escaping