-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnomyx-client.cabal
40 lines (38 loc) · 1.29 KB
/
nomyx-client.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
name: nomyx-client
version: 0.1.0
synopsis: CLI for Nomyx
description: Please see README.md
homepage: http://www.nomyx.net
license: BSD3
license-file: LICENSE
author: Corentin Dupont
maintainer: [email protected]
copyright: 2015 Corentin Dupont
category: Game
build-type: Simple
cabal-version: >=1.10
Executable nomyx-client
hs-source-dirs: src
Main-Is: Main.hs
ghc-options: -Wall
other-modules: Nomyx.Client.Client
Nomyx.Client.Types
build-depends: base,
nomyx-api,
nomyx-language,
nomyx-core,
either -any,
mtl >= 2.1 && < 2.3,
servant,
servant-server,
servant-client,
swagger2,
lens -any,
optparse-applicative,
filepath,
yaml,
bytestring,
lens,
aeson,
http-client
default-language: Haskell2010