diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -3,14 +3,11 @@
 import Graphics.UI.Gtk
 import Graphics.UI.Gtk.WebKit.WebView
 import System.FilePath
-import System.Environment
-import System.Exit
+import System.Environment(getArgs)
  
 main = do
     [url, path] <- getArgs
     webSnap url path
-    
-
 
 webSnap :: String -> FilePath -> IO ()
 webSnap url output = do
diff --git a/websnap.cabal b/websnap.cabal
--- a/websnap.cabal
+++ b/websnap.cabal
@@ -1,5 +1,5 @@
 name:                websnap
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Transforms URLs to PNGs
 homepage:            https://github.com/jrb/websnap
 license:             BSD3
@@ -13,11 +13,10 @@
 
 executable websnap
   main-is:             Main.hs
-  build-depends:       base ==4.6.*,
-                       filepath ==1.3.*,
-                       webkit ==0.12.*,
-                       gtk ==0.12.*,
-                       network ==2.4.*
+  build-depends:       base     ==4.*,
+                       webkit   >=0.12,
+                       gtk      >=0.12,
+                       filepath
     
   hs-source-dirs:      src
   default-language:    Haskell2010
