wordle-hs/wordle-hs.cabal

33 lines
857 B
Plaintext
Raw Permalink Normal View History

2022-01-11 17:08:11 +01:00
cabal-version: 3.0
name: wordle-hs
version: 0.1.0.0
synopsis: a wordle clone in Haskell
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: AGPL-3.0-or-later
license-file: LICENSE
author: Jill "oatmealine" Monoids
maintainer: oatmealine@disroot.org
-- A copyright notice.
-- copyright:
category: Game
extra-source-files: CHANGELOG.md
executable wordle-hs
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
2022-01-13 08:17:48 +01:00
build-depends: base ^>=4.14.1.0, ansi-terminal, random, text, time
2022-01-11 17:08:11 +01:00
hs-source-dirs: app
default-language: Haskell2010