diff --git a/Database/BBDB.hs b/Database/BBDB.hs
--- a/Database/BBDB.hs
+++ b/Database/BBDB.hs
@@ -125,7 +125,6 @@
 import Control.Applicative hiding (many)
 import Data.Maybe
 import Data.List
-import Data.List.Utils
 
 doubleQuoteChar = '"'
 
@@ -373,6 +372,9 @@
 -- | returns a list of  only the actual bbdb entries, removing the comments
 justEntries :: [BBDBFile] -> [BBDB]
 justEntries = mapMaybe justEntry
+
+join :: [a] -> [[a]] -> [a]
+join delim l = concat (intersperse delim l)
 
 -- | surround a string with the given two characters  
 surroundWith :: a -> a -> [a] -> [a]
diff --git a/bbdb.cabal b/bbdb.cabal
--- a/bbdb.cabal
+++ b/bbdb.cabal
@@ -7,7 +7,7 @@
 -- The package version. See the Haskell package versioning policy
 -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
 -- standards guiding when and how versions should be incremented.
-Version:             0.1
+Version:             0.2
 
 -- A short (one-line) description of the package.
 Synopsis:            Ability to read, write, and examine BBDB files
@@ -57,13 +57,10 @@
   
   -- Packages needed in order to build this package.
   Build-depends: 
-       base >= 3 && <=4,
+       base >= 3 && <= 5,
        mtl,
-       MissingH,
-       parsec >= 3.1.0
-       
-  -- preferences: base>=4
-  
+       parsec3
+
   -- Modules not exported by this package.
   -- Other-modules:       
   
