packages feed

nqe-0.1.0.0: nqe.cabal

name:                nqe
version:             0.1.0.0
synopsis:            Concurrency library in the style of Erlang/OTP
description:
    Follow the example of Erlang developing a minimalistic actor library with a
    distinct Haskell flavour. It does not implement Erlang/OTP-style processes
    exactly, but it is merely inspired by their philosophy.
homepage:            https://github.com/xenog/nqe#readme
license:             PublicDomain
license-file:        UNLICENSE
author:              Jean-Pierre Rupp
maintainer:          xenog@protonmail.com
category:            Control
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Control.Concurrent.NQE
  other-modules:       Control.Concurrent.NQE.Process
                       Control.Concurrent.NQE.Network
                       Control.Concurrent.NQE.Supervisor
  build-depends:       base >= 4.7 && < 5
                     , bytestring >= 0.10 && < 0.11
                     , conduit >= 1.2 && < 1.3
                     , conduit-extra >= 1.1 && < 1.3
                     , containers >= 0.5 && < 0.6
                     , async >= 2.1 && < 2.3
                     , lifted-async >= 0.9 && < 0.10
                     , lifted-base >= 0.2 && < 0.3
                     , transformers-base >= 0.4 && < 0.5
                     , monad-control >= 1.0 && < 1.1
                     , stm >= 2.4 && < 3
  default-language:    Haskell2010

test-suite nqe-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , nqe
                     , bytestring >= 0.10 && < 0.11
                     , conduit >= 1.2 && < 1.3
                     , conduit-extra >= 1.1 && < 1.3
                     , exceptions >= 0.8 && < 0.9
                     , async >= 2.1 && < 2.3
                     , hspec >= 2.4 && < 3
                     , stm >= 2.4 && < 3
                     , stm-conduit >= 3.0 && < 3.1
                     , text >= 1.2 && < 1.3
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/xenog/nqe