-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
any-pat.cabal
60 lines (56 loc) · 1.77 KB
/
any-pat.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
name: any-pat
version: 0.4.0.0
synopsis: Quasiquoters that act on a sequence of patterns and compiles these view into patterns and expressions.
-- description:
homepage: https://github.com/hapytex/any-pat#readme
license: BSD3
license-file: LICENSE
author: Willem Van Onsem
maintainer: hapytexeu+gh@gmail.com
copyright: 2023 HaPyTeΧ
category: utils
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Data.Pattern.Any
build-depends:
base >= 4.7 && < 5
, template-haskell >= 2.2.0.0
, unordered-containers >=0.1
, haskell-src-exts
, haskell-src-meta
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wmissing-home-modules
-Wredundant-constraints
test-suite all-pat
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Data.Pattern.AnySpec
build-depends:
base
, any-pat
, hspec ==2.*
, parsec >=3.0
, QuickCheck >=2.1
build-tool-depends:
hspec-discover:hspec-discover == 2.*
default-language: Haskell2010
default-extensions:
ghc-options: -Wall -Wcompat -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
source-repository head
type: git
location: https://github.com/hapytex/any-pat