-
Notifications
You must be signed in to change notification settings - Fork 0
/
diplomacy.cabal
81 lines (76 loc) · 2.8 KB
/
diplomacy.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
-- Initial diplomacy.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: diplomacy
version: 0.2.0.1
synopsis: Diplomacy board game
description: The board game Diplomacy, spoken in Haskell
homepage: https://github.com/avieth/diplomacy
license: BSD3
license-file: LICENSE
author: Alexander Vieth
maintainer: [email protected]
copyright: BSD3
category: Games
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: http://github.com/avieth/diplomacy.git
library
exposed-modules: Diplomacy.OrderObject
, Diplomacy.Zone
, Diplomacy.ZonedSubject
, Diplomacy.Turn
, Diplomacy.SupplyCentreDeficit
, Diplomacy.Order
, Diplomacy.Season
, Diplomacy.Control
, Diplomacy.OrderType
, Diplomacy.GreatPower
, Diplomacy.Occupation
, Diplomacy.Dislodgement
, Diplomacy.Aligned
, Diplomacy.OrderValidation
, Diplomacy.Province
, Diplomacy.Unit
, Diplomacy.OrderResolution
, Diplomacy.Phase
, Diplomacy.Game
, Diplomacy.Subject
, Data.MapUtil
, Data.AtLeast
other-extensions: GADTs
, DataKinds
, ImpredicativeTypes
, MultiParamTypeClasses
, FlexibleInstances
, FlexibleContexts
, ScopedTypeVariables
, PolyKinds
, KindSignatures
, DeriveFunctor
, GeneralizedNewtypeDeriving
, StandaloneDeriving
, TypeFamilies
, OverloadedStrings
, RankNTypes
, PatternSynonyms
build-depends: base >=4.7 && <5
, containers >=0.5 && <0.7
, transformers >=0.3 && <0.6
, text
, TypeNat >=0.5 && <0.6
, parsec >= 3.1 && <3.2
hs-source-dirs: ./src
default-language: Haskell2010
test-suite adjudication
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: ./test/adjudication
other-modules: AdjudicationTests
build-depends: base
, diplomacy
, HUnit
, TypeNat
, containers