-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordle.cabal
32 lines (30 loc) · 1.07 KB
/
wordle.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
cabal-version: 2.4
name: wordle
version: 0.1.0.0
synopsis: A simple Wordle solver
homepage: https://github.com/bacchanalia/wordle
bug-reports: https://github.com/bacchanalia/wordle/issues
license: AGPL-3.0-or-later
license-file: LICENSE
author: Mel Zuser
maintainer: mel@mzero.dev
copyright: Mel Zuser 2021
category: Game
data-dir: data
data-files: answerlist, guesslist, output
executable wordle
main-is: Main.hs
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N4
ghc-options: -Wall -Wno-name-shadowing -Wno-type-defaults -Wno-unused-top-binds
build-depends: base ^>=4.14.3.0
, bytestring
, cereal
, cereal-vector
, containers
, directory
, filepath
, mtl
, parallel
, vector
hs-source-dirs: app
default-language: Haskell2010