-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple-storage.cabal
26 lines (25 loc) · 1.01 KB
/
simple-storage.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
name: simple-storage
version: 0.0.0.0
synopsis: Simple storage server for knowledge graphs.
homepage: https://github.com/knowledge-graph/simple-storage
license: MIT
license-file: LICENSE
author: Daniel Buckmaster
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
executable simple-storage
main-is: Server.hs
hs-source-dirs: src
build-depends: scotty >= 0.6,
wai, wai-extra,
network, http-types,
persistent, persistent-mongoDB,
template-haskell, persistent-template,
containers, random, mtl, text,
monad-control,
base >= 4.6 && < 5
ghc-options: -threaded -O -Wall -fno-warn-unused-do-bind
default-extensions: OverloadedStrings
default-language: Haskell2010