hblock-0.1.0.0: 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.0
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.6 && <4.7
, vector >=0.10 && <0.11
, containers >=0.5 && <0.6
, safecopy >=0.8 && <0.9
, unordered-containers >=0.2 && <0.3
, hashable >=1.2 && <1.3
, uuid >=1.3.3
, blaze-markup
, path-pieces
, text
, aeson
, deepseq
, cereal
, bytestring
-- hs-source-dirs:
default-language: Haskell2010