diff --git a/lib/Yabi.hs b/lib/Yabi.hs
--- a/lib/Yabi.hs
+++ b/lib/Yabi.hs
@@ -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
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -6,7 +6,7 @@
 import System.Environment
 import Text.Parsec
 
-import MiniFuck
+import Yabi
 
 runProgram :: String -> IO ()
 runProgram s = case parse programParser "" s of
diff --git a/yabi-muno.cabal b/yabi-muno.cabal
--- a/yabi-muno.cabal
+++ b/yabi-muno.cabal
@@ -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
