-
Notifications
You must be signed in to change notification settings - Fork 1
/
blanks.cabal
131 lines (126 loc) · 3.52 KB
/
blanks.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
121
122
123
124
125
126
127
128
129
130
131
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: 1883a9e21182af1f3a1d3ff64b601b64f73f4bbb93944a1bdf13d742aa1980b4
name: blanks
version: 0.6.0
synopsis: Fill-in-the-blanks - A library factoring out substitution from ASTs
description: Please see the README on GitHub at <https://github.com/ejconlon/blanks#readme>
category: Language
homepage: https://github.com/ejconlon/blanks#readme
bug-reports: https://github.com/ejconlon/blanks/issues
author: Eric Conlon
maintainer: [email protected]
copyright: (c) 2019 Eric Conlon
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/ejconlon/blanks
library
exposed-modules:
Blanks
Blanks.Conversion
Blanks.Internal.Abstract
Blanks.Internal.Info
Blanks.Internal.Placed
Blanks.Internal.ScopeW
Blanks.Internal.Under
Blanks.LocScope
Blanks.ReExports
Blanks.Scope
Blanks.Transform.Abstract
Blanks.Transform.Global
Blanks.Transform.Lift
Blanks.Transform.Track
Blanks.Util.Located
Blanks.Util.Name
Blanks.Util.NatNewtype
Blanks.Util.Sub
other-modules:
Paths_blanks
hs-source-dirs:
src
default-extensions:
BangPatterns
ConstraintKinds
DeriveFunctor
DeriveFoldable
DeriveGeneric
DeriveTraversable
DerivingStrategies
DerivingVia
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GeneralizedNewtypeDeriving
KindSignatures
MultiParamTypeClasses
PatternSynonyms
Rank2Types
StandaloneDeriving
TypeFamilies
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fno-warn-unused-top-binds
build-depends:
adjunctions >=4.4 && <5
, base >=4.12 && <5
, containers >=0.6 && <1
, deepseq >=1.4 && <2
, distributive >=0.6 && <1
, mtl >=2.2 && <3
default-language: Haskell2010
test-suite blanks-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Test.Blanks.Lib.Assertions
Test.Blanks.Lib.Exp
Test.Blanks.Lib.LiftScope
Test.Blanks.Lib.Parsing
Test.Blanks.Lib.SimpleScope
Test.Blanks.Tests.ExpTest
Test.Blanks.Tests.LiftTest
Test.Blanks.Tests.ProgramTest
Test.Blanks.Tests.ScopeTest
Test.Blanks.Tests.TrackedTest
Paths_blanks
hs-source-dirs:
test
default-extensions:
BangPatterns
ConstraintKinds
DeriveFunctor
DeriveFoldable
DeriveGeneric
DeriveTraversable
DerivingStrategies
DerivingVia
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GeneralizedNewtypeDeriving
KindSignatures
MultiParamTypeClasses
PatternSynonyms
Rank2Types
StandaloneDeriving
TypeFamilies
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fno-warn-unused-top-binds -threaded -rtsopts -with-rtsopts=-N
build-depends:
adjunctions >=4.4 && <5
, base >=4.12 && <5
, blanks
, containers >=0.6 && <1
, deepseq >=1.4 && <2
, distributive >=0.6 && <1
, megaparsec
, mtl >=2.2 && <3
, tasty
, tasty-hunit
, text
default-language: Haskell2010