-
Notifications
You must be signed in to change notification settings - Fork 16
/
HaskellHangman.cabal
36 lines (30 loc) · 997 Bytes
/
HaskellHangman.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
36
cabal-version: 2.4
name: HaskellHangman
version: 0.1.0.0
synopsis: See README for more info
tested-with: GHC==8.10.7
description: A guided Hangman project, designed as a companion to the second part of EMURGO Academy's Haskell course.
homepage: https://github.com/gitpod-io/template-haskell
license: MIT
license-file: LICENSE
author: Ian Burzynski
maintainer: 23251244+iburzynski@users.noreply.github.com
category: Example
extra-source-files:
.hlint.yaml
CHANGELOG.md
README.md
executable HaskellHangman
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: A6
, A7
, A8
, Provided
, Sandbox
build-depends:
base
, directory
, mtl >= 2.3.1
hs-source-dirs: solutions
default-language: Haskell2010