-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapollo.cabal
100 lines (94 loc) · 1.96 KB
/
apollo.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: apollo
version: 1.0.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Jacob Errington
maintainer: [email protected]
copyright: (c) Labcoders Club 2016
category: Web
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
flag debug
default: False
executable apollo
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
-fprof-auto
-fprint-expanded-synonyms
if flag(debug)
ghc-options:
-O0
other-modules:
Apollo.Api
Apollo.Archive
Apollo.Crypto
Apollo.Misc
Apollo.Monad
Apollo.Monad.Types
Apollo.Reflection
Apollo.Server
Apollo.Track
Apollo.Transcoding
Apollo.Types
Apollo.Types.Job
Apollo.Types.Servant
Apollo.YoutubeDl
Apollo.Parser
default-extensions:
ConstraintKinds
DataKinds
DeriveFunctor
DeriveFoldable
DeriveTraversable
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
build-depends:
aeson >=1.0,
async >=2.1,
base >=4.9,
binary >=0.8,
bytestring >=0.10,
containers >=0.5,
cryptonite >=0.20,
data-default-class >=0.1,
directory >=1.2,
filepath >=1.4,
http-api-data >=0.3,
http-types >=0.9,
libmpd >=0.9,
lzma >=0.0.0.3,
monad-control >=1.0,
servant >=0.11,
servant-server >=0.11,
mtl >=2.2,
network-uri >=2.6,
process >=1.4,
string-conversions >=0.4,
tar >=0.5,
temporary >=1.2,
text >=1.2,
transformers-base >=0.4,
time >=1.9,
wai >=3.2,
wai-extra >=3.0,
warp >=3.2