yabi-muno 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+12/−11 lines, 3 filesdep +mtl-compatdep +yabi-munodep −yabidep ~mtl
Dependencies added: mtl-compat, yabi-muno
Dependencies removed: yabi
Dependency ranges changed: mtl
Files
- lib/Yabi.hs +7/−7
- src/Main.hs +1/−1
- yabi-muno.cabal +4/−3
lib/Yabi.hs view
@@ -1,9 +1,9 @@-module MiniFuck- ( module MiniFuck.Types- , module MiniFuck.Engine- , module MiniFuck.Parser+module Yabi+ ( module Yabi.Types+ , module Yabi.Engine+ , module Yabi.Parser ) where -import MiniFuck.Types-import MiniFuck.Engine-import MiniFuck.Parser+import Yabi.Types+import Yabi.Engine+import Yabi.Parser
src/Main.hs view
@@ -6,7 +6,7 @@ import System.Environment import Text.Parsec -import MiniFuck+import Yabi runProgram :: String -> IO () runProgram s = case parse programParser "" s of
yabi-muno.cabal view
@@ -1,5 +1,5 @@ name: yabi-muno-version: 0.1.0.0+version: 0.1.0.1 synopsis: Yet Another Brainfuck Interpreter description: Yet Another Brainfuck Interpreter for muno license: MIT@@ -20,7 +20,8 @@ Yabi.Parser, Yabi build-depends: base >=4.7 && <4.8,- mtl >=2.2 && <2.3,+ mtl-compat >=0.2.1 && <0.2.2,+ mtl, lens >=4.7 && <4.8, containers >=0.5 && <0.6, parsec >=3.1 && <3.2,@@ -35,6 +36,6 @@ mtl, containers, parsec,- yabi+ yabi-muno hs-source-dirs: src default-language: Haskell2010