packages feed

hblock-0.1.0.2: hblock.cabal

-- Initial hblock.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                hblock
version:             0.1.0.2
synopsis:            A mutable vector that provides indexation on the datatype fields it stores
-- description:         
license:             BSD3
license-file:        LICENSE
author:              HugoDaniel
maintainer:          mr.hugo.gomes@gmail.com
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules: Data.HBlock
                 , Data.Indexation.SimpleIx
                 , Data.Indexation.NormalIx
                 , Data.Indexation.Constraints
                 , Data.Indexation.UUID
  -- other-modules:       
  other-extensions: BangPatterns
                  , TypeFamilies
                  , RankNTypes
                  , DeriveDataTypeable
                  , GeneralizedNewtypeDeriving
  ghc-options:   -Wall -O2
  build-depends: base                   >=4 && < 5 
               , vector                 >=0.10 
               , containers             >=0.5  
               , safecopy               >=0.8  
               , unordered-containers   >=0.2  
               , hashable               >=1.2  
               , uuid                   >=1.3.3
               , blaze-markup
               , path-pieces
               , text
               , aeson
               , deepseq
               , cereal
               , bytestring
  -- hs-source-dirs:      
  default-language:    Haskell2010