-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlapse.cabal
More file actions
75 lines (71 loc) · 1.44 KB
/
lapse.cabal
File metadata and controls
75 lines (71 loc) · 1.44 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
cabal-version: 3.0
name: lapse
version: 2.1.1
license: GPL-3.0-only
license-file: LICENSE
author: ProggerX
maintainer: x@proggers.ru
build-type: Simple
data-files: modules/**/*.lp
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
Lapse
, Lapse.Operators
, Lapse.Eval
, Lapse.Scopes
, Lapse.Types
, Lapse.Lambda
, Lapse.Parser
, Lapse.Modules
, Lapse.Modules.Web
, Lapse.Modules.Web.Client
, Lapse.Modules.Web.Server
, Lapse.Modules.Web.Server.Get
, Lapse.Modules.Web.Server.Post
, Lapse.Modules.Web.Types
, Lapse.Modules.Json
, Lapse.Modules.FS
hs-source-dirs:
src
build-depends:
base >=4.18.2.1 && <4.20
, containers
, directory
, file-embed
, mtl
, wreq
, bytestring
, text
, lens
, case-insensitive
, warp
, wai
, http-types
, aeson
, text
, vector
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base >=4.18.2.1 && <4.20
, containers
, lapse
, mtl
, tasty
, tasty-hunit
default-language: GHC2021
executable lapse
import: warnings
main-is: Main.hs
build-depends:
base >=4.18.2.1 && <4.20
, deepseq
, lapse
hs-source-dirs: app
default-language: GHC2021