-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatbinBackend.cabal
34 lines (32 loc) · 1 KB
/
BatbinBackend.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
cabal-version: >=1.10
name: BatbinBackend
version: 0.1.0.0
description: a REST API for Batbin
license-file: LICENSE
author: Udit Karode
maintainer: udit.karode@gmail.com
build-type: Simple
executable BatbinBackend
main-is: Main.hs
other-modules: Utils
, Routes
, SpockRes
hs-source-dirs: src
build-depends: base >=4.8 && <4.14
, Spock
, text
, aeson
, uuid
, directory
, ansi-terminal
, MissingH
, wai
, iproute
, network
, hedis
, utf8-string
, mtl
, bytestring
, regex-compat
, transformers
default-language: Haskell2010