File tree Expand file tree Collapse file tree 2 files changed +68
-105
lines changed Expand file tree Collapse file tree 2 files changed +68
-105
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,70 @@ name: unison-share-api
2
2
github : unisonweb/unison
3
3
copyright : Copyright (C) 2013-2021 Unison Computing, PBC and contributors
4
4
5
+
5
6
library :
6
7
source-dirs : src
7
8
when :
8
9
- condition : false
9
10
other-modules : Paths_unison_share_api
10
11
12
+ dependencies :
13
+ - aeson >= 2.0.0.0
14
+ - async
15
+ - base
16
+ - binary
17
+ - bytes
18
+ - bytestring
19
+ - cborg
20
+ - containers
21
+ - Diff
22
+ - directory
23
+ - errors
24
+ - extra
25
+ - filepath
26
+ - fuzzyfind
27
+ - http-media
28
+ - http-types
29
+ - lens
30
+ - lucid
31
+ - memory
32
+ - mtl
33
+ - nonempty-containers
34
+ - openapi3
35
+ - regex-tdfa
36
+ - serialise
37
+ - servant
38
+ - servant-docs
39
+ - servant-openapi3
40
+ - servant-server
41
+ - text
42
+ - transformers
43
+ - unison-codebase
44
+ - unison-codebase-sqlite
45
+ - unison-codebase-sqlite-hashing-v2
46
+ - unison-core
47
+ - unison-core1
48
+ - unison-hash
49
+ - unison-hash-orphans-aeson
50
+ - unison-hashing-v2
51
+ - unison-parser-typechecker
52
+ - unison-prelude
53
+ - unison-pretty-printer
54
+ - unison-runtime
55
+ - unison-util-relation
56
+ - unison-util-base32hex
57
+ - unison-share-projects-api
58
+ - unison-sqlite
59
+ - unison-syntax
60
+ - unliftio
61
+ - uri-encode
62
+ - utf8-string
63
+ - vector
64
+ - wai
65
+ - wai-cors
66
+ - warp
67
+ - yaml
68
+
11
69
tests :
12
70
unison-share-api-tests :
13
71
when :
@@ -18,66 +76,18 @@ tests:
18
76
- easytest
19
77
- hedgehog
20
78
- unison-share-api
79
+ - base
80
+ - bytestring
81
+ - serialise
82
+ - text
83
+ - unison-hash
84
+ - unison-prelude
85
+ - unison-codebase-sqlite
86
+ - vector
87
+
21
88
main : Main.hs
22
89
source-dirs : tests
23
90
24
- dependencies :
25
- - aeson >= 2.0.0.0
26
- - async
27
- - base
28
- - binary
29
- - bytes
30
- - bytestring
31
- - cborg
32
- - containers
33
- - Diff
34
- - directory
35
- - errors
36
- - extra
37
- - filepath
38
- - fuzzyfind
39
- - http-media
40
- - http-types
41
- - lens
42
- - lucid
43
- - memory
44
- - mtl
45
- - nonempty-containers
46
- - openapi3
47
- - regex-tdfa
48
- - serialise
49
- - servant
50
- - servant-docs
51
- - servant-openapi3
52
- - servant-server
53
- - text
54
- - transformers
55
- - unison-codebase
56
- - unison-codebase-sqlite
57
- - unison-codebase-sqlite-hashing-v2
58
- - unison-core
59
- - unison-core1
60
- - unison-hash
61
- - unison-hash-orphans-aeson
62
- - unison-hashing-v2
63
- - unison-parser-typechecker
64
- - unison-prelude
65
- - unison-pretty-printer
66
- - unison-runtime
67
- - unison-util-relation
68
- - unison-util-base32hex
69
- - unison-share-projects-api
70
- - unison-sqlite
71
- - unison-syntax
72
- - unliftio
73
- - uri-encode
74
- - utf8-string
75
- - vector
76
- - wai
77
- - wai-cors
78
- - warp
79
- - yaml
80
-
81
91
ghc-options :
82
92
-Wall
83
93
Original file line number Diff line number Diff line change @@ -182,63 +182,16 @@ test-suite unison-share-api-tests
182
182
ImportQualifiedPost
183
183
ghc-options : -Wall
184
184
build-depends :
185
- Diff
186
- , aeson >= 2.0.0.0
187
- , async
188
- , base
189
- , binary
190
- , bytes
185
+ base
191
186
, bytestring
192
- , cborg
193
187
, code-page
194
- , containers
195
- , directory
196
188
, easytest
197
- , errors
198
- , extra
199
- , filepath
200
- , fuzzyfind
201
189
, hedgehog
202
- , http-media
203
- , http-types
204
- , lens
205
- , lucid
206
- , memory
207
- , mtl
208
- , nonempty-containers
209
- , openapi3
210
- , regex-tdfa
211
190
, serialise
212
- , servant
213
- , servant-docs
214
- , servant-openapi3
215
- , servant-server
216
191
, text
217
- , transformers
218
- , unison-codebase
219
192
, unison-codebase-sqlite
220
- , unison-codebase-sqlite-hashing-v2
221
- , unison-core
222
- , unison-core1
223
193
, unison-hash
224
- , unison-hash-orphans-aeson
225
- , unison-hashing-v2
226
- , unison-parser-typechecker
227
194
, unison-prelude
228
- , unison-pretty-printer
229
- , unison-runtime
230
195
, unison-share-api
231
- , unison-share-projects-api
232
- , unison-sqlite
233
- , unison-syntax
234
- , unison-util-base32hex
235
- , unison-util-relation
236
- , unliftio
237
- , uri-encode
238
- , utf8-string
239
196
, vector
240
- , wai
241
- , wai-cors
242
- , warp
243
- , yaml
244
197
default-language : Haskell2010
You can’t perform that action at this time.
0 commit comments