packages feed

theatre-1.0.0.2: theatre.cabal

cabal-version: 3.0

name: theatre
version: 1.0.0.2
category: Concurrency, Actors
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

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:
    base >=4.9 && <5,
    contravariant >=1.3 && <2,
    slave-thread ==1.*,
    unagi-chan ==0.4.*,