packages feed

objectid-0.1.0.2: objectid.cabal

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

name:                objectid
version:             0.1.0.2
synopsis:            Rather unique identifier for things that need to be stored
-- description:         
homepage:            https://github.com/tsuraan/objectid
license:             BSD3
license-file:        LICENSE
author:              jay groven
maintainer:          tsuraan@gmail.com
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Data.ObjectID
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.8
                     , blaze-builder
                     , bytestring >= 0.10.0.0
                     , cereal
                     , cryptohash >= 0.5.1
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test-all
  type:                exitcode-stdio-1.0
  main-is:             TestAll.hs
  build-depends:       base >= 4.6 && < 4.8
                     , bytestring
                     , bytestring-arbitrary
                     , cereal
                     , objectid
                     , QuickCheck >= 2.1
                     , tasty
                     , tasty-quickcheck
  hs-source-dirs:      tests
  default-language:    Haskell2010
  ghc-options:         -Wall