packages feed

guid-0.1.0: guid.cabal

name: guid
version: 0.1.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE.md
copyright: 2015 brady.ouren <brady.ouren@gmail.com>
maintainer: brady.ouren <brady.ouren@gmail.com>
synopsis: A simple wrapper around uuid
description:
    A simple wrapper around uuid
category: base
author: brady.ouren <brady.ouren@gmail.com>
tested-with: GHC ==7.8 GHC ==7.6
extra-source-files:
  README.md

source-repository head
  type:     git
  location: https://github.com/tippenein/guid

library
  hs-source-dirs: src
  exposed-modules:
      Data.GUID
  build-depends:
      base ==4.*
    , bytestring
    , text
    , uuid
    , uuid-types
  default-language: Haskell2010
  ghc-options: -Wall -fno-warn-missing-signatures

test-suite tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:
      base -any
    , guid -any
    , HUnit -any
  default-language:    Haskell2010
  other-modules:
      GuidSpec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -fno-warn-missing-signatures