-
Notifications
You must be signed in to change notification settings - Fork 1
/
hgreed.cabal
35 lines (34 loc) · 1.5 KB
/
hgreed.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: hgreed
version: 0.1.1.0
synopsis: Haskell implementation of the `greed` game
description: Haskell implementation of the `greed` game.
For more information about the original game,
please visit http://www.catb.org/~esr/greed/greed.html
homepage: https://github.com/duncanguthrie/hgreed#readme
license: BSD3
license-file: LICENSE
author: Duncan Guthrie
maintainer: dguthrie@posteo.net
copyright: Duncan Guthrie
category: Game
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable hgreed
hs-source-dirs: src
other-modules: Greed, Scores, UI
ghc-options: -threaded
main-is: Main.hs
default-language: Haskell2010
build-depends: array >= 0.5 && < 0.6
, base >= 4.7 && < 5
, brick >= 0.47 && < 0.48
, directory >= 1.3 && < 1.4
, microlens >= 0.4 && < 0.5
, microlens-th >= 0.4 && < 0.5
, random >= 1.1 && < 1.2
, recursion-schemes >= 5.1 && < 5.2
, split >= 0.2 && < 0.3
, time >= 1.8 && < 1.9
, tuple >= 0.3 && < 0.4
, vty >= 5.25 && < 5.26