packages feed

users-mysql-haskell-0.5.2.0: users-mysql-haskell.cabal

name:                users-mysql-haskell
version:             0.5.2.0
synopsis:            A mysql-haskell backend for the users library.
description:         A mysql-haskell backend for the users library.
license:             BSD3
license-file:        LICENSE
author:              Daniel Diaz
maintainer:          diaz.carrete@facebook.com
-- copyright:           
category:            Web
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

Extra-Source-Files:
    README.md

source-repository head
  type: git
  location: https://github.com/danidiaz/users-mysql-haskell.git

library
  exposed-modules:     Web.Users.MySQL
  build-depends:
                       base 		 >=4.6 && <5,
                       users 		 ==0.5.*,
                       mysql-haskell >=0.5,
                       transformers  >=0.5,
                       text 		 >=1.2,
                       time          >=1.4,
                       uuid 		 >=1.3,
                       io-streams    >=1.2
  hs-source-dirs:      src
  default-language:    Haskell2010
  -- ghc-options:         -auto-all -Wall -fno-warn-orphans
  ghc-options:         -Wall

test-suite tests
  type:           	   exitcode-stdio-1.0
  hs-source-dirs: 	   tests, src
  main-is:        	   tests.hs
  other-modules:  	   Web.Users.MySQL
  build-depends:
                       base 		 >=4.6 && <5,
                       users 		 ==0.5.*,
                       mysql-haskell >=0.5,
                       transformers  >=0.5,
                       text 		 >=1.2,
                       time          >=1.4,
                       uuid 		 >=1.3,
                       io-streams    >=1.2,
                       tasty         >=0.10.1.1,
                       tasty-hunit   >=0.9.2,
                       bytestring
  default-language:    Haskell2010
  ghc-options:    	   -Wall