-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
63 lines (54 loc) · 1.07 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
---
name:
mx-state-codes
version:
1.0.0.0
github:
"prikhi/mx-state-codes"
license:
BSD3
license-file:
LICENSE
author:
"Pavan Rikhi"
maintainer:
copyright:
"2019, Pavan Rikhi"
category:
Data
extra-source-files:
- README.md
- CHANGELOG.md
synopsis:
ISO 3166-2:MX State Codes and Names
description: >
This package contains a @Code@ data type containing each Mexican State, as
well as functions for converting from and to the English subdivision names.
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
dependencies:
- base >= 4.7 && < 5
- aeson >= 1 && < 3
- text >= 1 && < 3
library:
source-dirs:
src
tests:
mx-state-codes-test:
main:
Spec.hs
source-dirs:
test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- mx-state-codes
- hspec
- QuickCheck