-
Notifications
You must be signed in to change notification settings - Fork 0
/
squarehole.cabal
73 lines (67 loc) · 1.7 KB
/
squarehole.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
cabal-version: 3.0
name: squarehole
version: 0.0.0.1
synopsis: It goes in the square hole.
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Zoe Zuser
maintainer: [email protected]
copyright: 2024
category: Control
build-type: Simple
extra-doc-files: CHANGELOG.md
common language
default-language: Haskell2010
default-extensions:
, BlockArguments
, ConstraintKinds
, DataKinds
, DerivingStrategies
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, ImportQualifiedPost
, MultiParamTypeClasses
, PolyKinds
, ScopedTypeVariables
, TypeApplications
, TypeFamilies
, TypeOperators
, UnicodeSyntax
, UndecidableInstances
, RankNTypes
, UndecidableSuperClasses
, NoStarIsType
, AllowAmbiguousTypes
common common-deps
build-depends: base
common warnings
ghc-options: -Wall
library
import: language, common-deps, warnings
hs-source-dirs: src
exposed-modules:
, Control.Monad.SquareHole
, Data.HSet
, Data.Type.Ord.Instances
, Data.Type.Map
, Data.Type.Function
, Data.Type.Semigroup
build-depends:
, ghc-prim
, hashable
, mtl
, transformers
, unordered-containers
-- other-modules:
test-suite squarehole-test
import: language, common-deps, warnings
hs-source-dirs: test
main-is: Main.hs
type: exitcode-stdio-1.0
-- other-modules:
build-depends:
squarehole