-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes-matter.cabal
39 lines (36 loc) · 1.11 KB
/
types-matter.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
cabal-version: 2.4
name: types-matter
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/gvolpe/types-matter
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: Gabriel Volpe
maintainer: [email protected]
library
exposed-modules: Control.Parallel
, Control.Parallel.Class
, Foldy
, Http
, ParValidation
, Refined.Instances
, Stringy
build-depends: base
, async
, natural-transformation
, random
, refined
, text
, template-haskell
, validators
hs-source-dirs: src
default-language: Haskell2010
executable types-matter
main-is: Main.hs
build-depends: base
, refined
, types-matter
hs-source-dirs: app
default-language: Haskell2010