packages feed

t3-server-0.2.0: t3-server.cabal

name:              t3-server
synopsis:            tic-tac-toe server
description:         Please see README.md
version:           0.2.0
cabal-version:     >= 1.10
build-type:        Simple
license: BSD3
license-file: LICENSE
author: Joe Vargas
maintainer: http://github.com/jxv
copyright: 2016 Joe Vargas
category: Game

library
  hs-source-dirs:
    src
  exposed-modules:
    Control.Monad.Conc.ClassTmp
    T3.Playback
    T3.Random
    T3.Web
    T3.DB
    T3.Server
    T3.Server.Dispatch
    T3.Server.Lobby
    T3.Match
    T3.Match.Types
  default-extensions:
    -- OverlappingInstances
    OverloadedStrings
    MultiParamTypeClasses
    TypeFamilies
    GeneralizedNewtypeDeriving
    FlexibleContexts
    FlexibleInstances
    EmptyDataDecls
    TupleSections
  build-depends:
      base >= 4 && < 5
    , bytestring >= 0.9 && < 0.11
    , text >= 0.11 && < 2.0
    , aeson >= 0.6 && < 0.11
    , dejafu >= 0.2.0.0 && < 1.0.0.0
    , safe
    , unordered-containers
    , containers
    , vector
    , time
    , transformers
    , case-insensitive
    , wai
    , async
    , mtl
    , stm
    , random
    , hashable
    , hashmap
    , either
    , t3-game
    , random
    , MonadRandom
  default-language:
    Haskell2010