diff --git a/raven-haskell.cabal b/raven-haskell.cabal
--- a/raven-haskell.cabal
+++ b/raven-haskell.cabal
@@ -1,5 +1,5 @@
 name:                raven-haskell
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Haskell client for Sentry logging service.
 -- description:         
 homepage:            https://bitbucket.org/dpwiz/raven-haskell
@@ -24,10 +24,15 @@
   -- other-modules:
   build-depends:
     base ==4.*,
-    random, uuid,
-    time, old-locale,
-    aeson, bytestring, text, unordered-containers,
-    http-conduit, network
+    aeson,
+    bytestring >= 0.10,
+    http-conduit,
+    network,
+    random >= 1.0,
+    text,
+    time >= 1.5.0.1,
+    unordered-containers,
+    uuid
 
 test-suite test
   type: exitcode-stdio-1.0
@@ -35,6 +40,12 @@
   hs-source-dirs: test
   build-depends:
     base,
+    aeson,
+    bytestring,
     hspec,
     raven-haskell,
-    bytestring, unordered-containers, aeson
+    unordered-containers
+
+source-repository head
+  type:     git
+  location: https://bitbucket.org/dpwiz/raven-haskell
diff --git a/src/System/Log/Raven.hs b/src/System/Log/Raven.hs
--- a/src/System/Log/Raven.hs
+++ b/src/System/Log/Raven.hs
@@ -60,8 +60,7 @@
 import Data.UUID (UUID)
 import System.Random (randomIO)
 import Data.Time.Clock (getCurrentTime)
-import Data.Time.Format (formatTime)
-import System.Locale (defaultTimeLocale)
+import Data.Time.Format (formatTime, defaultTimeLocale)
 import System.IO (stderr, hPutStrLn)
 import qualified Control.Exception as E
 import qualified Data.HashMap.Strict as HM
