-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.yaml
110 lines (101 loc) · 1.93 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
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
name: hypertypes
version: 0.2.3
github: "lamdu/hypertypes"
license: BSD3
author: "Yair Chuchem"
maintainer: "yairchu@gmail.com"
copyright: 2018 Yair Chuchem"
extra-source-files:
- README.md
- ChangeLog.md
synopsis: Typed ASTs
category: Algorithms, Compilers/Interpreters, Language, Logic, Unification
description: Please see the README on GitHub at <https://github.com/lamdu/hypertypes#readme>
dependencies:
- base >= 4.9 && <5
- constraints
- containers
- generic-constraints
- generic-data
- lattices
- lens
- monad-st
- mtl
- pretty
default-extensions:
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveGeneric
- DerivingStrategies
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeOperators
- TypeFamilies
- NoImplicitPrelude
ghc-options:
- -fexpose-all-unfoldings
- -Wall
- -Wcompat
- -Wredundant-constraints
- -Wunused-packages
ghc-prof-options:
- -fexpose-all-unfoldings
library:
source-dirs: src
other-modules:
- Hyper.Internal.Prelude
- Hyper.TH.Internal.Utils
dependencies:
- array
- base-compat
- binary
- deepseq
- pretty
- show-combinators
- template-haskell
- transformers
- th-abstraction >= 0.6
ghc-options:
- -Wnoncanonical-monad-instances
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
tests:
hypertypes-test:
main: Spec.hs
source-dirs: test
when:
- condition: false
other-modules:
- Benchmark
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hypertypes
- tasty
- tasty-hunit
- text
benchmarks:
hypertypes-bench:
main: Benchmark.hs
source-dirs: test
other-modules:
- LangB
- TypeLang
ghc-options:
- -O2
- -Wnoncanonical-monad-instances
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
dependencies:
- criterion
- hypertypes