forked from wereHamster/publicsuffix-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublicsuffix.cabal
85 lines (62 loc) · 1.88 KB
/
publicsuffix.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
74
75
76
77
78
79
80
81
82
83
84
85
name: publicsuffix
version: 0.20191003
synopsis: The publicsuffix list exposed as proper Haskell types
description:
This package contains a parsed representation of the publicsuffix list,
and functions which you can use to query it.
.
The package version follows the template @\<api version\>.\<date\>@ where
@date@ is when the publicsuffix list was last updated from upstream, in the
format @YYYYMMDD@.
homepage: https://github.com/wereHamster/publicsuffix-haskell/
license: MIT
license-file: LICENSE
author: Tomas Carnecky
maintainer: [email protected]
category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files:
src/Data/PublicSuffix/public_suffix_list.dat
source-repository head
type: git
location: git://github.com/wereHamster/publicsuffix-haskell.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O
build-depends:
base >=4 && <4.14
, filepath
, template-haskell
, text
exposed-modules:
Data.PublicSuffix
, Data.PublicSuffix.Rules
other-modules:
Data.PublicSuffix.Types
, Data.PublicSuffix.TH
test-suite spec
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall -O
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends:
base >=4 && <4.14
, publicsuffix
, hspec
, text
benchmark bench
hs-source-dirs: benchmark
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
ghc-prof-options: "-with-rtsopts=-p -s -h -i0.1 -N"
type: exitcode-stdio-1.0
main-is: Benchmark.hs
build-depends:
base >=4 && <4.14
, criterion
, random
, publicsuffix
, text