packages feed

werewolf-slack-0.3.0.2: werewolf-slack.cabal

name:           werewolf-slack
version:        0.3.0.2

author:         Henry J. Wylde
maintainer:     public@hjwylde.com
homepage:       https://github.com/hjwylde/werewolf-slack

synopsis:       A Slack chat client for playing werewolf
description:    The game engine is based off of the party game Mafia, also known as Werewolf.

license:        BSD3
license-file:   LICENSE

cabal-version:  >= 1.10
category:       Game
build-type:     Simple

extra-source-files: CHANGELOG.md README.md

source-repository head
    type:       git
    location:   git@github.com:hjwylde/werewolf-slack

executable werewolf-slack
    main-is:        Main.hs
    hs-source-dirs: app/
    ghc-options:    -threaded -with-rtsopts=-N
    other-modules:
        Paths_werewolf_slack
        Werewolf.Slack.Application
        Werewolf.Slack.Options
        Werewolf.Slack.Slack
        Werewolf.Slack.Version
        Werewolf.Slack.Werewolf

    default-language: Haskell2010
    build-depends:
        aeson >= 0.8 && < 0.12,
        base >= 4.8 && < 5,
        bytestring == 0.10.*,
        extra == 1.4.*,
        http-client == 0.4.*,
        http-client-tls == 0.2.*,
        http-types == 0.9.*,
        mtl == 2.2.*,
        optparse-applicative == 0.12.*,
        process == 1.2.*,
        text == 1.2.*,
        wai == 3.2.*,
        warp == 3.2.*,
        werewolf == 0.5.*