packages feed

wordify-0.1.0.0: wordify.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: f28111054d235bc18dc5e0d167dd433a32a9e0c4e9627cc10c02822b5b2ac44e

name:           wordify
version:        0.1.0.0
description:    Please see the README on GitHub at <https://github.com/githubuser/wordify#readme>
category:       Game
homepage:       https://github.com/happy0/wordify#readme
bug-reports:    https://github.com/happy0/wordify/issues
author:         Gordon Martin
maintainer:     happy0
copyright:      2019 Gordon Martin
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/happy0/wordify

library
  exposed-modules:
      Lib
      Wordify.Rules.Board
      Wordify.Rules.Board.Internal
      Wordify.Rules.Dictionary
      Wordify.Rules.FormedWord
      Wordify.Rules.Game
      Wordify.Rules.Game.Internal
      Wordify.Rules.LetterBag
      Wordify.Rules.LetterBag.Internal
      Wordify.Rules.Move
      Wordify.Rules.Player
      Wordify.Rules.Pos
      Wordify.Rules.Pos.Internal
      Wordify.Rules.ScrabbleError
      Wordify.Rules.Square
      Wordify.Rules.Tile
  other-modules:
      Paths_wordify
  hs-source-dirs:
      src
  build-depends:
      array
    , base >=4.7 && <5
    , containers
    , errors
    , listsafe
    , mtl
    , parsec
    , random
    , safe
    , semigroups
    , split
    , transformers
    , unordered-containers
  default-language: Haskell2010

executable wordify-exe
  main-is: Main.hs
  other-modules:
      Paths_wordify
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      array
    , base >=4.7 && <5
    , containers
    , errors
    , listsafe
    , mtl
    , parsec
    , random
    , safe
    , semigroups
    , split
    , transformers
    , unordered-containers
    , wordify
  default-language: Haskell2010

test-suite wordify-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Tests.BoardTest
      Tests.FormedWordsTest
      Tests.FullGameTest
      Tests.Instances
      Tests.LetterBagTest
      Tests.PosTest
      Tests.Properties
      Tests.Regressions
      Tests.SharedTestData
      Tests.Utils
      Paths_wordify
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      HUnit
    , QuickCheck
    , array
    , base >=4.7 && <5
    , containers
    , directory
    , errors
    , filepath
    , listsafe
    , mtl
    , parsec
    , random
    , safe
    , semigroups
    , split
    , test-framework
    , test-framework-hunit
    , test-framework-quickcheck2
    , transformers
    , unordered-containers
    , wordify
  default-language: Haskell2010