From eb030965c922bc82965cfee08f2d57e11410c229 Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Tue, 3 Feb 2015 14:53:35 +0530
Subject: [PATCH] add dependencies

---
 deluge.cabal | 7 +++++--
 src/Main.hs  | 3 +++
 2 files changed, 8 insertions(+), 2 deletions(-)
 create mode 100644 src/Main.hs

diff --git a/deluge.cabal b/deluge.cabal
index ec2e127..0dd22a0 100644
--- a/deluge.cabal
+++ b/deluge.cabal
@@ -4,7 +4,7 @@
 name:                deluge
 version:             0.1.0.0
 synopsis:            A Bit-torrent client
--- description:         
+description:         A bittorrent client
 license:             GPL-3
 license-file:        LICENSE
 author:              Ramakrishnan Muthukrishnan
@@ -19,6 +19,9 @@ executable deluge
   main-is:             Main.hs
   -- other-modules:       
   -- other-extensions:    
-  build-depends:       base >=4.6 && <4.7
+  build-depends:       base >=4.6 && <4.7,
+                       bytestring,
+                       attoparsec
   hs-source-dirs:      src
+  ghc-options:         -Wall
   default-language:    Haskell2010
\ No newline at end of file
diff --git a/src/Main.hs b/src/Main.hs
new file mode 100644
index 0000000..4af7af8
--- /dev/null
+++ b/src/Main.hs
@@ -0,0 +1,3 @@
+module Main where
+
+main = putStrLn "hello"
-- 
2.45.2