-- Initial hangman-game.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: HangmanAscii version: 0.1.0.1 synopsis: Yet another Hangman game. description: Another command line implementation of the classic hangman game with ASCII shape and anumation. after installation with cabal install, execute hangman-ascii to run the game. homepage: https://github.com/pylover/hangman-ascii license: BSD3 license-file: LICENSE author: pylover maintainer: vahid.mardani@gmail.com -- copyright: category: Game build-type: Simple extra-source-files: CHANGELOG.md cabal-version: >=1.10 executable hangman-ascii main-is: Main.hs other-modules: Game , Paths_HangmanAscii , Shape , Database -- other-extensions: build-depends: base >=4.12 && <4.13 , optparse-applicative >=0.17 && <0.18 , random >=1.1 && <1.2 , haskeline >=0.7.4.3 && <0.8 , mtl >=2.2.2 && <2.3 , containers >=0.6.0.1 && <0.7 -- hs-source-dirs: default-language: Haskell2010