-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
61 lines (54 loc) · 1.29 KB
/
package.yaml
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
name: typesystem
version: 0.0.1
homepage: https://github.com/luc-tielen/typesystem#README.md
license: MIT
author: Luc Tielen
maintainer: luc.tielen@gmail.com
copyright: 2019 Luc Tielen
category: Web
extra-source-files:
- README.md
- LICENSE
dependencies:
- base >= 4.11.0 && < 5
- protolude
- containers
- text
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- LambdaCase
- FlexibleContexts
ghc-options:
- -Wall
- -Weverything
- -Wno-safe
- -Wno-unsafe
- -Wno-implicit-prelude
- -Wno-missed-specializations
- -Wno-all-missed-specializations
- -Wno-missing-import-lists
- -Wno-type-defaults
- -Wno-missing-local-signatures
- -Wno-monomorphism-restriction
- -Wno-missing-deriving-strategies
- -optP-Wno-nonportable-include-path
- -fhide-source-paths
- -fno-show-valid-hole-fits
- -fno-sort-valid-hole-fits
library:
source-dirs: lib
executables:
typesystem:
source-dirs: src
main: Main.hs
dependencies:
- typesystem
tests:
typesystem-test:
main: test.hs
source-dirs: tests
dependencies:
- hspec >= 2.6.1 && < 3.0.0
- neat-interpolation >= 0.3.2.4 && < 1
- typesystem