This repository was archived by the owner on Oct 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhs-e164.cabal
More file actions
53 lines (49 loc) · 1.53 KB
/
hs-e164.cabal
File metadata and controls
53 lines (49 loc) · 1.53 KB
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
name: hs-e164
version: 0.1.1
synopsis: E.164 Parsing
description: A complete library for E.164 parsing and validation.
homepage: https://github.com/ancarda/hs-e164#readme
license: MIT
license-file: LICENSE
author: Mark Dain
maintainer: mark@markdain.net
copyright: (c) 2018 Mark Dain
category: Telephony
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library internal
hs-source-dirs: lib
exposed-modules: Telephony.PSTN.E164
, Telephony.PSTN.E164.Types
, Telephony.PSTN.E164.NANP
build-depends: base >= 4.7 && < 5
default-language: Haskell2010
ghc-options: -Werror -Weverything -Wno-safe
default-extensions: InstanceSigs
, NoImplicitPrelude
, Safe
library
reexported-modules: Telephony.PSTN.E164
build-depends: base >= 4.7 && < 5
, internal
default-language: Haskell2010
ghc-options: -Werror -Weverything -Wno-safe
default-extensions: InstanceSigs
, NoImplicitPrelude
, Safe
test-suite test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base >=4.7 && <5
, hspec >= 2.5.5
, HUnit >= 1.6.0.0
, internal
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Werror -Wall
default-extensions: InstanceSigs
, NoImplicitPrelude
source-repository head
type: git
location: https://github.com/ancarda/hs-e164