-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudchor.cabal
More file actions
84 lines (72 loc) · 2.06 KB
/
cloudchor.cabal
File metadata and controls
84 lines (72 loc) · 2.06 KB
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
cabal-version: 3.8
-- SPDX-FileCopyrightText: 2025 Alex Ionescu
-- SPDX-License-Identifier: MPL-2.0
name: cloudchor
version: 0.1.0.1
synopsis: Lightweight and efficient choreographic programming for cloud services
description: Please see the README on GitHub at <https://github.com/aionescu/cloudchor#readme>
category: Concurrency
homepage: https://github.com/aionescu/cloudchor
bug-reports: https://github.com/aionescu/cloudchor/issues
author: Alex Ionescu
maintainer: Alex Ionescu <hackage@ionescu.sh>
copyright: Copyright (C) 2025 Alex Ionescu
license: MPL-2.0
license-files:
LICENSES/MPL-2.0.txt
LICENSES/BSD-3-Clause.txt
build-type: Simple
extra-doc-files: README.md
tested-with:
GHC == 9.10.3
GHC == 9.8.4
source-repository head
type: git
location: https://github.com/aionescu/cloudchor
library
default-language: GHC2021
default-extensions:
AllowAmbiguousTypes
BlockArguments
DataKinds
ExplicitNamespaces
GADTs
ImpredicativeTypes
LambdaCase
PartialTypeSignatures
TypeFamilies
ghc-options:
-Wall
-Wcompat
-Widentities
-Wmissing-deriving-strategies
-Wno-name-shadowing
-Wno-unused-do-bind
-Wno-type-defaults
-Wpartial-fields
-Wprepositive-qualified-module
-Wredundant-constraints
-Wunused-packages
hs-source-dirs: src
exposed-modules:
Choreography
Choreography.Choreo
Choreography.Location
Choreography.Location.Multi
Choreography.Network
Choreography.Network.Http
Choreography.Network.Local
Choreography.Network.LocalMsgCount
Control.Monad.Freer
build-depends:
base >= 4.16 && < 4.21
, containers >= 0.6 && < 0.7
, http-client >= 0.7 && < 0.8
, mtl >= 2.3 && < 2.4
, servant >= 0.19 && < 0.21
, servant-client >= 0.19 && < 0.21
, servant-server >= 0.19 && < 0.21
, sop-core >= 0.5 && < 0.6
, template-haskell >= 2.18 && < 2.23
, unordered-containers >= 0.2 && < 0.3
, warp >= 3.3 && < 3.4