packages feed

cqrs-sqlite3-0.9.0: cqrs-sqlite3.cabal

Name:                cqrs-sqlite3
Version:             0.9.0
Synopsis:            SQLite3 backend for the cqrs package.
Description:         SQLite3 backend for the cqrs package.
License:             MIT
License-file:        LICENSE
Category:            Data
Cabal-version:       >=1.10
Build-type:          Simple
Author:              Bardur Arantsson
Maintainer:          Bardur Arantsson <bardur@scientician.net>

Library
  build-depends:      base == 4.*
                    , bytestring >= 0.9.0.1
                    , conduit >= 1.0 && < 2
                    , cqrs-types >= 0.9.0 && < 0.10.0
                    , pool-conduit >= 0.1 && < 0.2
                    , direct-sqlite >= 2.2 && < 2.3
                    , text >= 0.11 && < 0.12
                    , transformers >= 0.2 && <0.4
  Default-Language:   Haskell2010
  Default-Extensions: OverloadedStrings
                      ScopedTypeVariables
                      TypeFamilies
  ghc-options:        -Wall
  hs-source-dirs:     src
  exposed-modules:    Data.CQRS.EventStore.Backend.Sqlite3
                      Data.CQRS.EventStore.Backend.Sqlite3Utils

Test-Suite cqrs-sqlite3-tests
  Type:                exitcode-stdio-1.0
  Hs-source-dirs:      src-test
  Main-is:             Main.hs
  Build-depends:       base == 4.*
                     , bytestring >= 0.9.0.1
                     , conduit >= 0.5 && < 0.6
                     , cqrs-test >= 0.9 && < 0.10.0
                     , pool-conduit >= 0.1 && < 0.2
                     , direct-sqlite >= 2.2 && < 2.3
                     , text >= 0.11 && < 0.12
                     , transformers >= 0.2.2 && < 0.4
                     -- Self-dependency
                     , cqrs-sqlite3
                     -- Test framework
                     , hspec >= 1.3 && < 2.0
  Ghc-options:         -Wall
  Default-language:    Haskell2010
  Default-extensions:  OverloadedStrings
                       ScopedTypeVariables
                       TypeFamilies