-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathcodeworld-server.cabal
More file actions
62 lines (57 loc) · 1.28 KB
/
codeworld-server.cabal
File metadata and controls
62 lines (57 loc) · 1.28 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
Name: codeworld-server
Version: 0.1
Synopsis: Web server for CodeWorld
License-file: LICENSE
Author: The CodeWorld Authors
Maintainer: Chris Smith <cdsmith@gmail.com>
Copyright: (c) 2020, The CodeWorld Authors
Build-type: Simple
Cabal-version: >=1.2
Description:
The web server for the CodeWorld programming environment.
Executable codeworld-server-migrate
Hs-source-dirs: src
Main-is: Migration.hs
Other-modules: Model, Util
Build-depends:
base,
directory,
filepath
Executable codeworld-server
Hs-source-dirs: src
Main-is: Main.hs
Other-modules: Model, Util
Build-depends:
aeson,
base,
base64-bytestring,
bytestring,
codeworld-account,
codeworld-auth,
codeworld-compiler,
cryptonite,
data-default,
directory,
fast-logger,
filelock,
filepath,
haskell-src-exts < 1.21,
http-conduit >= 2.3.0 && < 2.3.9,
lifted-base,
memory,
mtl,
ormolu >= 0.1,
process,
regex-compat,
regex-tdfa,
SafeSemaphore,
snap-core,
snap-server,
temporary,
text,
unix,
vector
Ghc-options: -threaded
-Wall
-fno-warn-unused-do-bind
-funbox-strict-fields