-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtempuhs-server.cabal
140 lines (136 loc) · 5.87 KB
/
tempuhs-server.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: tempuhs-server
version: 0.0.0
synopsis: Chronology server
description: This is the server for the tempuhs chronicler.
homepage: https://secure.plaimi.net/works/tempuhs
license: AGPL-3
license-file: LICENSE
author: plaimi
maintainer: [email protected]
copyright: (c) plaimi 2014-2015
category: Time
build-type: Custom
cabal-version: >=1.10
data-files: data/src.tar.gz
library
exposed-modules: Tempuhs.Server
Tempuhs.Server.CLI
Tempuhs.Server.Database
Tempuhs.Server.DELETE
Tempuhs.Server.Laws.Props
Tempuhs.Server.Laws.Timespan
Tempuhs.Server.Param
Tempuhs.Server.Requests
Tempuhs.Server.Requests.Attributes.Mono
Tempuhs.Server.Requests.Attributes.Poly
Tempuhs.Server.Requests.Clock
Tempuhs.Server.Requests.Meta
Tempuhs.Server.Requests.Permissionset
Tempuhs.Server.Requests.Role
Tempuhs.Server.Requests.Timespan
Tempuhs.Server.Requests.Timespan.Util
Tempuhs.Server.Requests.User
Tempuhs.Server.Spock
other-modules: Paths_tempuhs_server
other-extensions: FlexibleContexts
KindSignatures
OverloadedStrings
RankNTypes
build-depends: aeson >=0.7 && <0.9,
base >=4.6 && <4.8,
bytestring >=0.10 && <0.11,
Cabal >= 1.18 && <1.23,
esqueleto >=2.0 && <2.2,
exceptions >=0.6 && <0.7,
monad-control >=1.0 && <1.1,
monad-logger >=0.3 && <0.4,
old-locale >=1.0 && <1.1,
optparse-applicative >=0.11 && <0.12,
persistent >=2.1.1 && <2.1.2,
persistent-postgresql >=2.1.1 && <2.1.2,
plailude >=0.5 && <0.6,
process >=1.2 && <1.3,
resourcet >=1.1 && <1.2,
resource-pool >=0.2 && <0.3,
scotty >=0.7 && <0.10,
tempuhs >=0.0 && <0.1,
text >=1.1 && <1.3,
time >=1.4 && <1.5,
transformers >=0.3 && <0.5,
wai >=3.0 && <3.1,
warp >=3.0 && <3.1
hs-source-dirs: src
default-language: Haskell2010
executable tempuhs-server
main-is: Main.hs
build-depends: base >=4.6 && <4.8,
tempuhs-server
hs-source-dirs: src-exec
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Tempuhs.Spoc
Tempuhs.Spoc.Assert
Tempuhs.Spoc.Default
Tempuhs.Spoc.Entity
Tempuhs.Spoc.Init
Tempuhs.Spoc.JSON
Tempuhs.Spoc.Request
Tempuhs.Spoc.Type
Tempuhs.Tests.Requests.DELETE
Tempuhs.Tests.Requests.Clock
Tempuhs.Tests.Requests.Meta
Tempuhs.Tests.Requests.Permissionset
Tempuhs.Tests.Requests.Role
Tempuhs.Tests.Requests.Timespan
Tempuhs.Tests.Requests.User
other-extensions: FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
MultiParamTypeClasses
OverloadedStrings
build-depends: aeson >=0.7 && <0.9,
base >=4.6 && <4.8,
containers >=0.5.5 && <0.5.6,
bytestring >=0.10 && <0.11,
hspec >=1.9 && <1.13,
http-types >=0.8 && <0.9,
HUnit >=1.2 && <1.3,
lens >= 4.5 && <4.8,
monad-logger >=0.3 && <0.4,
persistent >=2.1.1 && <2.1.2,
persistent-sqlite >=2.1 && <2.1.1,
plailude >=0.5 && <0.6,
scotty >=0.7 && <0.10,
silently >=1.2 && <1.3,
stringable >=0.1.3 && <0.2,
tempuhs >=0.0 && <0.1,
tempuhs-server,
text >=1.1 && <1.3,
time >=1.4 && <1.5,
transformers >=0.3 && <0.5,
unix >=2.7 && <2.8,
wai >=3.0 && <3.1,
wai-extra >=3.0 && <3.1
hs-source-dirs: test
default-language: Haskell2010
test-suite prop
type: exitcode-stdio-1.0
main-is: Prop.hs
other-modules: Tempuhs.Props.Instances
Tempuhs.Props.Timespan
Tempuhs.Props.Timespan.Laws
Tempuhs.Props.Timespan.Props
other-extensions: FlexibleContexts
OverloadedStrings
build-depends: base >=4.6 && <4.8,
persistent >=2.1 && <2.2,
QuickCheck >=2.7 && <2.8,
quickcheck-instances >=0.3.9 && <0.4,
tempuhs,
tempuhs-server,
test-framework >=0.8 && <0.9,
test-framework-quickcheck2 >=0.3 && <0.4
hs-source-dirs: prop
default-language: Haskell2010