-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSD.cabal
44 lines (41 loc) · 1.18 KB
/
CSD.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
cabal-version: 3.0
name: CSD
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
author: Gan Shen
maintainer: gan_shen@icloud.com
build-type: Simple
common warnings
ghc-options: -Wall
library
import: warnings
default-language: GHC2021
hs-source-dirs: src
exposed-modules:
Control.Concurrent.Async.Lifted
Control.CSD.Site
Control.CSD.Network
Control.CSD.CSD
Control.CSD.ChoiceCSD
other-modules:
Control.CSD.Old
build-depends:
async ^>= 2.2.5,
base ^>= 4.17.2.1,
http-client ^>= 0.7.15,
mtl ^>= 2.2.2,
servant ^>= 0.19.1,
servant-client ^>= 0.19,
servant-server ^>= 0.19.2,
transformers ^>= 0.5.6.2,
unordered-containers ^>= 0.2.19.1,
warp ^>= 3.3.25,
executable CSD-test
import: warnings
default-language: GHC2021
hs-source-dirs: app
main-is: Main.hs
build-depends:
base ^>=4.17.2.1,
CSD