-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantikythera.cabal
93 lines (87 loc) · 3.78 KB
/
antikythera.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
-- Initial antikythera.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: antikythera
version: 0.0.0.0
synopsis: A CalDAV and CardDAV Server in Haskell
-- description:
homepage: https://github.com/collaborare/antikythera
license: AGPL-3
license-file: LICENSE
author: nek0
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
library
exposed-modules: Application
, Foundation
, Settings
, Settings.StaticFiles
, Model
, Handler.Home
-- other-modules:
-- other-extensions:
default-extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
NoImplicitPrelude
CPP
MultiParamTypeClasses
TypeFamilies
GADTs
GeneralizedNewtypeDeriving
FlexibleContexts
EmptyDataDecls
NoMonomorphismRestriction
DeriveDataTypeable
RecordWildCards
ViewPatterns
build-depends: base >=4.9 && <4.10
, yesod
, yesod-core >= 1.4.0 && < 1.5
, yesod-auth >= 1.4.0 && < 1.5
, yesod-static >= 1.4.0.3 && < 1.6
, yesod-form >= 1.4.0 && < 1.5
, classy-prelude >= 0.10.2
, classy-prelude-conduit >= 0.10.2
, classy-prelude-yesod >= 0.10.2
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
, persistent >= 2.0
, persistent-postgresql >= 2.1.2
, persistent-template >= 2.0
, template-haskell
, shakespeare >= 2.0 && < 2.1
, hjsmin >= 0.1 && < 0.3
, monad-control >= 0.3 && < 1.1
, wai-extra >= 3.0 && < 3.1
, yaml >= 0.8 && < 0.9
, http-conduit >= 2.1
, directory >= 1.1 && < 1.3
, warp >= 3.0 && < 4
, data-default
, aeson >= 0.6
, conduit >= 1.0 && < 2.0
, monad-logger >= 0.3 && < 0.4
, fast-logger >= 2.2 && < 2.5
, wai-logger >= 2.2 && < 2.4
, safe-exceptions < 0.1.4.0
, file-embed
, safe
, unordered-containers
, containers
, vector
, time
-- snip
, wai
hs-source-dirs: src
default-language: Haskell2010
executable antikythera
main-is: Main.hs
hs-source-dirs: app
build-depends: base
, antikythera
, yesod
ghc-options: -threaded -O2