diff --git a/discord-hs.cabal b/discord-hs.cabal
--- a/discord-hs.cabal
+++ b/discord-hs.cabal
@@ -1,5 +1,5 @@
 name:                discord-hs
-version:             0.2.1
+version:             0.2.2
 synopsis:            An API wrapper for Discord in Haskell
 description:         Provides an api wrapper and framework for writing
                      bots against the Discord <https://discordapp.com/> API.
@@ -40,7 +40,7 @@
                      , Network.Discord.Rest.HTTP
   -- other-extensions:
   build-depends:       base==4.*
-                     , aeson==1.0.*
+                     , aeson>=1.0 && <1.2
                      , bytestring==0.10.*
                      , case-insensitive==1.2.*
                      , containers==0.5.*
@@ -54,11 +54,11 @@
                      , stm-conduit==3.0.*
                      , stm==2.4.*
                      , text==1.2.*
-                     , time==1.6.*
+                     , time>=1.6 && <1.9 
                      , transformers==0.5.*
                      , unordered-containers==0.2.*
                      , url==2.1.*
-                     , vector==0.11.*
+                     , vector>=0.10 && <0.13
                      , websockets==0.10.*
                      , req==0.2.*
                      , wuss==1.1.*
diff --git a/src/Network/Discord/Framework.hs b/src/Network/Discord/Framework.hs
--- a/src/Network/Discord/Framework.hs
+++ b/src/Network/Discord/Framework.hs
@@ -1,5 +1,3 @@
-{-# LANGUAGE TypeFamilies, ExistentialQuantification, RankNTypes, MultiParamTypeClasses #-}
-{-# LANGUAGE ScopedTypeVariables #-}
 -- | Provides a convenience framework for writing Discord bots without dealing with Pipes
 module Network.Discord.Framework where
   import Control.Concurrent
