packages feed

cqrs-example-0.6.0: cqrs-example.cabal

Name:                cqrs-example
Version:             0.6.0
Synopsis:            Example for cqrs package
Description:         Example for cqrs package
License:             MIT
License-file:        LICENSE
Author:              Bardur Arantsson
Maintainer:          spam@scientician.net
Category:            Web
Build-type:          Simple
Cabal-version:       >=1.10

Executable cqrs-example
  Main-is:           Main.hs
  Ghc-options:       -Wall
  Build-depends:     base == 4.*
                   , aeson >= 0.3.2.12 && <0.4
                   , bytestring >= 0.9 && < 0.10
                   , cereal >= 0.3 && < 0.4
                   , containers >= 0.4 && < 0.5
                   , cqrs >= 0.6 && < 0.7
                   , cqrs-sqlite3 >= 0.6 && < 0.7
                   , data-default >= 0.3 && < 0.4
                   , direct-sqlite >= 1.1 && < 1.2
                   , enumerator >= 0.4.15 && < 0.5
                   , happstack-lite >= 6.0 && < 7.0
                   , text >= 0.11 && < 0.12
                   , time >= 1.2 && < 1.3
                   , transformers >= 0.2.2 && < 0.3
  Default-extensions: DeriveDataTypeable
                      MultiParamTypeClasses
                      OverloadedStrings
                      ScopedTypeVariables
  Hs-source-dirs:    src
  Other-modules:     Aggregates
                     Events
                     Query
  Default-language:  Haskell2010

Test-Suite cqrs-example-tests
  type:              exitcode-stdio-1.0
  hs-source-dirs:    src
  main-is:           Test.hs
  build-depends:     base == 4.*
                   , bytestring >= 0.9 && < 0.10
                   , cereal >= 0.3 && < 0.4
                   , containers >= 0.4 && < 0.5
                   , cqrs >= 0.5 && < 0.6
                   , data-default >= 0.3 && < 0.4
                   , direct-sqlite >= 1.1 && < 1.2
                   , enumerator >= 0.4.15 && < 0.5
                   , text >= 0.11 && < 0.12
                   , time >= 1.2 && < 1.3
                   , transformers >= 0.2.2 && < 0.3
                   -- Test framework:
                   , HUnit >= 1.2 && < 2.0
                   , test-framework >= 0.4.0
                   , test-framework-hunit >= 0.2.0
                   , test-framework-quickcheck >= 0.2.0
                   , QuickCheck >= 1.1 && < 2
  default-language:   Haskell2010
  ghc-options:        -threaded -O0
  default-extensions: DeriveDataTypeable
                      MultiParamTypeClasses
                      OverloadedStrings
                      ScopedTypeVariables