packages feed

eventstore-0.7.2.0: eventstore.cabal

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

-- The name of the package.
name:                eventstore

-- The package version.  See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.7.2.0

-- A short (one-line) description of the package.
synopsis: EventStore TCP Client

-- A longer description of the package.
description: EventStore TCP Client <http://geteventstore.com>

-- The license under which the package is released.
license:             BSD3

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Yorick Laupa

-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer:          yo.eight@gmail.com

-- A copyright notice.
-- copyright:

homepage:            http://github.com/YoEight/eventstore
bug-reports:         http://github.com/YoEight/eventstore/issues
category:            Database

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a
-- README.
extra-source-files:  README.md
                     CHANGELOG.markdown

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10

source-repository head
  type: git
  location: git://github.com/YoEight/eventstore.git

library
  -- Modules exported by the library.
  exposed-modules: Database.EventStore

  -- Modules included in this library but not exported.
  other-modules:   Database.EventStore.Catchup
                   Database.EventStore.Internal.Connection
                   Database.EventStore.Internal.Packages
                   Database.EventStore.Internal.Processor
                   Database.EventStore.Internal.Reader
                   Database.EventStore.Internal.Types
                   Database.EventStore.Internal.Manager.Operation
                   Database.EventStore.Internal.Manager.Subscription
                   Database.EventStore.Internal.Operation.DeleteStreamOperation
                   Database.EventStore.Internal.Operation.ReadAllEventsOperation
                   Database.EventStore.Internal.Operation.ReadEventOperation
                   Database.EventStore.Internal.Operation.ReadStreamEventsOperation
                   Database.EventStore.Internal.Operation.TransactionStartOperation
                   Database.EventStore.Internal.Operation.WriteEventsOperation
                   Database.EventStore.Internal.Util.Sodium
                   Database.EventStore.Internal.Writer

  -- LANGUAGE extensions used by modules in this package.
  -- other-extensions:

  -- Other library packages from which modules are imported.
  build-depends:       base       >=4.7      && <5
                     , aeson      >=0.8      && <0.9
                     , async      >=2.0      && <2.1
                     , bytestring >=0.10.4   && <0.11
                     , cereal     >=0.4      && <0.5
                     , containers >=0.5      && <0.6
                     , network    ==2.6.*
                     , protobuf   >=0.2      && <0.3
                     , random     ==1.*
                     , sodium     ==0.11.*
                     , text       >=1.1.1    && <1.3
                     , time       >=1.4      && <1.6
                     , uuid       ==1.3.*
                     , unordered-containers
                     , stm
                     , attoparsec

  -- Directories containing source files.
  -- hs-source-dirs:

  -- Base language which the package is written in.
  ghc-options: -Wall

  default-language:    Haskell2010