@@ -27,6 +27,12 @@ library
27
27
Share
28
28
Share.App
29
29
Share.Backend
30
+ Share.BackgroundJobs
31
+ Share.BackgroundJobs.Errors
32
+ Share.BackgroundJobs.Monad
33
+ Share.BackgroundJobs.Search.DefinitionSync
34
+ Share.BackgroundJobs.Search.DefinitionSync.Types
35
+ Share.BackgroundJobs.Workers
30
36
Share.Branch
31
37
Share.Codebase
32
38
Share.Codebase.Types
@@ -45,6 +51,7 @@ library
45
51
Share.Postgres.Causal.Types
46
52
Share.Postgres.Comments.Queries
47
53
Share.Postgres.Contributions.Queries
54
+ Share.Postgres.Cursors
48
55
Share.Postgres.Definitions.Queries
49
56
Share.Postgres.Definitions.Types
50
57
Share.Postgres.Hashes.Queries
@@ -63,6 +70,8 @@ library
63
70
Share.Postgres.Projects.Queries
64
71
Share.Postgres.Queries
65
72
Share.Postgres.Refs.Types
73
+ Share.Postgres.Releases.Queries
74
+ Share.Postgres.Search.DefinitionSearch.Queries
66
75
Share.Postgres.Serialization
67
76
Share.Postgres.Sync.Conversions
68
77
Share.Postgres.Sync.Queries
@@ -118,6 +127,7 @@ library
118
127
Share.Web.Share.Contributions.Impl
119
128
Share.Web.Share.Contributions.MergeDetection
120
129
Share.Web.Share.Contributions.Types
130
+ Share.Web.Share.DefinitionSearch
121
131
Share.Web.Share.Diffs.Impl
122
132
Share.Web.Share.Diffs.Types
123
133
Share.Web.Share.Impl
@@ -144,6 +154,7 @@ library
144
154
Unison.Server.NameSearch.Postgres
145
155
Unison.Server.Share.Definitions
146
156
Unison.Server.Share.DefinitionSummary
157
+ Unison.Server.Share.DefinitionSummary.Types
147
158
Unison.Server.Share.Docs
148
159
Unison.Server.Share.FuzzyFind
149
160
Unison.Server.Share.NamespaceDetails
@@ -180,6 +191,7 @@ library
180
191
BlockArguments
181
192
QuasiQuotes
182
193
ImportQualifiedPost
194
+ OverloadedRecordDot
183
195
ghc-options : -Wall -Werror -Wname-shadowing -Wno-type-defaults -Wno-missing-pattern-synonym-signatures -fprint-expanded-synonyms -fwrite-ide-info -O2 -funbox-strict-fields
184
196
build-depends :
185
197
Diff
@@ -217,17 +229,20 @@ library
217
229
, http-media
218
230
, http-types
219
231
, jose
232
+ , ki-unlifted
220
233
, lens
221
234
, megaparsec
222
235
, memory
223
236
, mmorph
224
237
, monad-validate
238
+ , monoidal-containers
225
239
, mtl
226
240
, network
227
241
, network-simple
228
242
, network-uri
229
243
, nonempty-containers
230
244
, parallel
245
+ , parser-combinators
231
246
, pem
232
247
, prometheus-client
233
248
, prometheus-metrics-ghc
@@ -319,6 +334,7 @@ executable share-api
319
334
BlockArguments
320
335
QuasiQuotes
321
336
ImportQualifiedPost
337
+ OverloadedRecordDot
322
338
ghc-options : -Wall -Werror -Wname-shadowing -Wno-type-defaults -Wno-missing-pattern-synonym-signatures -fprint-expanded-synonyms -fwrite-ide-info -O2 -funbox-strict-fields -threaded -rtsopts "-with-rtsopts=-N -A32m -qn2 -T"
323
339
build-depends :
324
340
Diff
@@ -356,17 +372,20 @@ executable share-api
356
372
, http-media
357
373
, http-types
358
374
, jose
375
+ , ki-unlifted
359
376
, lens
360
377
, megaparsec
361
378
, memory
362
379
, mmorph
363
380
, monad-validate
381
+ , monoidal-containers
364
382
, mtl
365
383
, network
366
384
, network-simple
367
385
, network-uri
368
386
, nonempty-containers
369
387
, parallel
388
+ , parser-combinators
370
389
, pem
371
390
, prometheus-client
372
391
, prometheus-metrics-ghc
0 commit comments