-
Notifications
You must be signed in to change notification settings - Fork 15
/
HasChor.cabal
196 lines (176 loc) · 5.41 KB
/
HasChor.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
cabal-version: 2.4
name: HasChor
version: 0.1.0.1
synopsis: Functional choreographic programming in Haskell
license: BSD-3-Clause
license-file: LICENSE
author: Gan Shen
maintainer: Gan Shen <[email protected]>
copyright: (c) Gan Shen 2022
category: Concurrency
description:
HasChor is a library for functional choreographic programming in Haskell.
See the README.md for more information.
tested-with:
GHC == 9.6.3
GHC == 9.4.7
GHC == 9.2.8
extra-doc-files:
README.md
source-repository head
type: git
location: https://github.com/gshen42/HasChor
source-repository this
type: git
location: https://github.com/gshen42/HasChor
tag: v0.1.0.1
library
hs-source-dirs: src
default-language: GHC2021
exposed-modules:
Choreography
Choreography.Choreo
Choreography.Location
Choreography.Network
Choreography.Network.Http
Choreography.Network.Local
Control.Monad.Freer
build-depends:
, base >= 4.16 && < 4.20
, bytestring >= 0.11 && < 0.13
, http-client >= 0.7 && < 0.8
, servant >= 0.19 && < 0.21
, servant-client >= 0.19 && < 0.21
, servant-server >= 0.19 && < 0.21
, template-haskell >= 2.18 && < 2.22
, unordered-containers >= 0.2 && < 0.3
, warp >= 3.3 && < 3.4
executable bank-2pc
hs-source-dirs: examples/bank-2pc
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, split >= 0.2 && < 0.3
, time >= 1.11 && < 1.13
executable bookseller-0-network
hs-source-dirs: examples/bookseller-0-network
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, time >= 1.11 && < 1.13
executable bookseller-1-simple
hs-source-dirs: examples/bookseller-1-simple
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, time >= 1.11 && < 1.13
executable bookseller-2-higher-order
hs-source-dirs: examples/bookseller-2-higher-order
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, time >= 1.11 && < 1.13
executable bookseller-3-loc-poly
hs-source-dirs: examples/bookseller-3-loc-poly
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, time >= 1.11 && < 1.13
executable diffiehellman
hs-source-dirs: examples/diffiehellman
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, random >= 1.2 && < 1.3
, time >= 1.11 && < 1.13
executable karatsuba
hs-source-dirs: examples/karatsuba
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, async >= 2.2 && < 2.3
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
executable kvs1
hs-source-dirs: examples/kvs-1-simple
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable kvs2
hs-source-dirs: examples/kvs-2-primary-backup
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable kvs3
hs-source-dirs: examples/kvs-3-higher-order
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable kvs4
hs-source-dirs: examples/kvs-4-loc-poly
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable mergesort
hs-source-dirs: examples/mergesort
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable quicksort
hs-source-dirs: examples/quicksort
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, async >= 2.2 && < 2.3
, base >= 4.16 && < 4.20
, containers >= 0.6 && < 0.7
, time >= 1.11 && < 1.13
executable ring-leader
hs-source-dirs: examples/ring-leader
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20
, transformers >= 0.5 && < 0.7
executable playground
hs-source-dirs: examples/playground
main-is: Main.hs
default-language: GHC2021
build-depends:
, HasChor
, base >= 4.16 && < 4.20