packages feed

rest-rewrite 0.4.4 → 0.4.5

raw patch · 2 files changed

+4/−4 lines, 2 filesdep ~QuickCheckdep ~containersdep ~textnew-uploader

Dependency ranges changed: QuickCheck, containers, text, time

Files

rest-rewrite.cabal view
@@ -1,6 +1,6 @@ name:               rest-rewrite build-type:         Simple-version:            0.4.4+version:            0.4.5 cabal-version:      2.0 category:           Rewriting maintainer:         Zack Grannan <zgrannan@cs.ubc.ca>@@ -76,7 +76,7 @@                 , monad-loops >= 0.4.3 && < 0.5                 , unordered-containers >= 0.2.11                 , text-                , time >= 1.9.3 && < 1.13+                , time >= 1.9.3 && < 1.15   exposed-modules:       Arith       DSL
testlib/Nat.hs view
@@ -46,7 +46,7 @@                   ] showInt)   where     showInt :: MT.MetaTerm -> Maybe Text-    showInt t = pack . show <$> termToInt t+    showInt t = pack . Prelude.show <$> termToInt t  op :: GenParser Char st Op op = fmap (Op . pack) (many (alphaNum <|> char '\''))@@ -96,7 +96,7 @@ parseTerm :: String -> RuntimeTerm parseTerm str =   case parse term "" str of-    Left err -> error (show err)+    Left err -> error (Prelude.show err)     Right t  -> t  instance IsString RuntimeTerm where