-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
84 lines (79 loc) · 1.7 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
name: character-cases
version: 0.1.0.6
github: "aiya000/hs-character-cases"
license: MIT
author: "aiya000"
maintainer: "aiya000.develop@gmail.com"
copyright: "aiya000"
synopsis: Exposes subspecies types of Char. And naming cases.
category: Simple
description: e.g. meaning of [a-z], [A-Z], [0-9], PascalCase, camelCase, and snake_case. Please see https://github.com/aiya000/hs-character-cases#README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -fprint-explicit-kinds
- -fprint-potential-instances
default-extensions:
- BangPatterns
- BinaryLiterals
- BlockArguments
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveDataTypeable
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- DoAndIfThenElse
- DuplicateRecordFields
- EmptyDataDecls
- ExistentialQuantification
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- InstanceSigs
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- MultiWayIf
- NamedFieldPuns
- OverloadedStrings
- PartialTypeSignatures
- PatternGuards
- PolyKinds
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeFamilies
- TypeSynonymInstances
- ViewPatterns
dependencies:
- base >= 4.7 && < 5
- containers
- megaparsec
- prettyprinter
- template-haskell
library:
source-dirs: src
tests:
doctest:
main: Main.hs
source-dirs:
- test/doctest
- src
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Glob
- doctest