-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC4Restful.cabal
31 lines (29 loc) · 1 KB
/
C4Restful.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
name: C4Restful
version: 0.1.0.0
description: Connect Four RESTful server implemented in Haskell
homepage: https://github.com/RoryCrispin/Connect4RESTful#readme
license: BSD3
license-file: LICENSE
author: Rory Crispin
maintainer: gmail.com, rorycr96@
copyright: 2017 Rory Crispin
category: Web
build-type: Simple
extra-source-files: README.md
data-files: static-files/index.html
, static-files/style.css
, static-files/game.js
cabal-version: >=1.10
executable C4Restful-exe
hs-source-dirs: app
main-is: C4Restful.lhs
build-depends: base
, servant-server
, wai-cors
, aeson
, warp
, wai
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/RoryCrispin/Connect4RESTful