diff --git a/hspec-server.cabal b/hspec-server.cabal
--- a/hspec-server.cabal
+++ b/hspec-server.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                hspec-server
-version:             0.2.0
+version:             0.2.1
 synopsis:            Test Framework for Server's status
 description:         Hspec-Server is test framework for checking server's status.
                      It is inspired by the Ruby library ServerSpec.
@@ -49,7 +49,7 @@
 
     build-depends: base
                  , hspec
-                 , hspec-contrib
+                 -- , hspec-contrib
                  , hspec-server
                  , transformers
     Default-Language:   Haskell2010
diff --git a/test/test.hs b/test/test.hs
--- a/test/test.hs
+++ b/test/test.hs
@@ -1,6 +1,6 @@
 import Test.Hspec hiding (it,describe)
 import Test.Hspec.Server
-import Test.Hspec.Contrib.Retry
+-- import Test.Hspec.Contrib.Retry
 import Control.Monad.IO.Class
 
 main :: IO ()
@@ -20,6 +20,6 @@
         service "atd" `includes` Running
       it "command test" $ do
         command "ls" [] [] `includes` Exit 0
-      it "retry test" $ do
-        retryWith 10 $ --currently does not support Retry. I want to use retryWith !!!
-          command "ls" [] [] `includes` Exit 0
+      -- it "retry test" $ do
+      --   retryWith 10 $ --currently does not support Retry. I want to use retryWith !!!
+      --     command "ls" [] [] `includes` Exit 0
