packages feed

theatre-1: theatre.cabal

name:
  theatre
version:
  1
category:
  Concurrency
synopsis:
  Minimalistic actor library
homepage:
  https://github.com/nikita-volkov/theatre 
bug-reports:
  https://github.com/nikita-volkov/theatre/issues 
author:
  Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
  Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
  (c) 2017, Nikita Volkov
license:
  MIT
license-file:
  LICENSE
build-type:
  Simple
cabal-version:
  >=1.10

source-repository head
  type:
    git
  location:
    git://github.com/nikita-volkov/theatre.git

library
  hs-source-dirs:
    library
  default-extensions:
    Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, PatternSynonyms, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
  default-language:
    Haskell2010
  exposed-modules:
    Theatre
  other-modules:
    Theatre.Prelude
  build-depends:
    -- concurrency:
    unagi-chan == 0.4.*,
    slave-thread == 1.*,
    -- control:
    contravariant >= 1.3 && < 2,
    semigroups >= 0.18 && < 0.20,
    -- general:
    base-prelude >= 0.1.19 && < 2,
    base >= 4.8 && < 5