-
Notifications
You must be signed in to change notification settings - Fork 1
/
cherry-core-alpha.cabal
120 lines (117 loc) · 2.52 KB
/
cherry-core-alpha.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
cabal-version: >=1.10
name: cherry-core-alpha
version: 0.5.0.0
synopsis: The core library for Cherry Haskell.
description: The core library for Cherry Haskell, including a standard functions, server, and json parsing.
license: BSD3
license-file: LICENSE
author: Tereza Sokol
maintainer: [email protected]
copyright: Tereza Sokol
category: Development
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/cherry-haskell/cherry-core
library
exposed-modules:
Cherry.Prelude,
Array,
Basics,
Bitwise,
Char,
Debug,
Dict,
Environment,
File,
Interop,
Json.Decode,
Json.Encode,
JWT,
Http,
List,
Maybe,
Postgres,
Postgres.Decoder,
Result,
Set,
Server,
String,
Url,
Url.Builder,
Url.Parser,
Url.Parser.Query,
Task,
Terminal,
Token,
Time,
Tuple
other-modules:
Internal.Basics,
Internal.Shortcut,
Internal.Task,
Internal.Utils,
Url.Parser.Internal
Json.String,
Parser
Parser.Reporting
default-extensions:
OverloadedStrings,
NoImplicitPrelude
other-extensions:
RankNTypes,
GADTs,
FlexibleInstances,
MultiParamTypeClasses,
BangPatterns,
ImplicitPrelude,
MagicHash,
UnboxedTuples,
Rank2Types,
TypeSynonymInstances
build-depends:
async >=2.2 && <2.3,
base >=4.12 && <4.13,
aeson,
binary,
bytestring,
containers >=0.6 && <0.7,
directory,
ghc-prim,
jose-jwt,
base64-bytestring,
wai-middleware-static,
wai-extra,
warp,
network,
wai,
http-client,
http-client-tls,
http-types,
mtl,
postgresql-libpq,
safe-exceptions,
case-insensitive,
scientific,
stm,
text-utf8 >=1.2 && <1.3,
text,
time,
unix,
utf8-string,
vector >=0.12 && <0.13
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends: base >= 4.12.0 && < 4.13,
hspec,
text-utf8 >= 1.2.3 && < 1.3,
containers >= 0.6.0 && < 0.7,
cherry-core
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover == 2.*