forked from EmilGedda/hattis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhattis.cabal
66 lines (62 loc) · 1.83 KB
/
hattis.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
name: hattis
version: 1.0.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD-3
license-file: LICENSE
copyright: 2015-2016 Emil Gedda
maintainer: [email protected]
homepage: http://github.com/emilgedda/hattis#readme
synopsis: A cli-interface to the online coding judge kattis.com
description:
Please see README.md
category: Network
author: Emil Gedda
source-repository head
type: git
location: https://github.com/emilgedda/hattis
library
exposed-modules:
Hattis.Error
Hattis.Network
Hattis.Text.Ini
Hattis.Text.Make
Hattis.Text.SourceFile
build-depends:
base >=4.9.0.0 && <4.10,
utf8-string >=1.0.1.1 && <1.1,
bytestring >=0.10.8.1 && <0.11,
containers >=0.5.7.1 && <0.6,
directory >=1.2.6.2 && <1.3,
filepath >=1.4.1.0 && <1.5,
http-client >=0.4.31.1 && <0.5,
http-conduit >=2.1.11 && <2.2,
megaparsec >=5.0.1 && <5.1,
mtl >=2.2.1 && <2.3,
optparse-applicative >=0.12.1.0 && <0.13,
hxt >=9.3.1.16 && <9.4,
text >=1.2.2.1 && <1.3,
free >=4.12.4 && <4.13
default-language: Haskell2010
hs-source-dirs: src src/Hattis
executable hattis
main-is: Main.hs
build-depends:
base >=4.9.0.0 && <4.10,
hattis >=1.0.0.0 && <1.1,
filepath >=1.4.1.0 && <1.5,
mtl >=2.2.1 && <2.3,
ansi-terminal >=0.6.2.3 && <0.7,
optparse-applicative >=0.12 && <=0.15
default-language: Haskell2010
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
test-suite hattis-test
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
base >=4.9.0.0 && <4.10,
hattis >=1.0.0.0 && <1.1
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N