-
Notifications
You must be signed in to change notification settings - Fork 4
/
XOperad.cabal
35 lines (32 loc) · 1.04 KB
/
XOperad.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: XOperad
version: 0.1.0.0
synopsis: The implementation of tic-tac-toe using an operadic comonad
description: Please see README.md
homepage: http://github.com/BartoszMilewski/XOperad
author: Bartosz Milewski
category: game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall
exposed-modules: Forest
, Matrix
, Numbers
, Operad
, Vector
build-depends: base >= 4.7 && < 5
, comonad
, constraints
executable tic-tac-toe
default-language: Haskell2010
ghc-options: -Wall
main-is: Main.hs
build-depends: base
, XOperad
, comonad
, constraints
source-repository head
type: git
location: https://github.com/BartoszMilewski/XOperad