forked from ua-parser/uap-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathua-parser.cabal
64 lines (54 loc) · 1.34 KB
/
ua-parser.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
Name: ua-parser
Description: Please refer to the git/github README on the project for example usage.
Version: 0.5.111
Synopsis: A library for parsing User-Agent strings, official Haskell port of ua-parser
License: BSD3
License-file: LICENSE
Author: Ozgun Ataman
Maintainer: [email protected]
Category: Web
Build-type: Simple
Cabal-version: >=1.8
data-files: ./*.yaml
source-repository head
type: git
location: https://github.com/tobie/ua-parser
subdir: haskell
Library
hs-source-dirs: src
Exposed-modules:
Web.UAParser
Build-depends:
base < 5
, bytestring
, text
, pcre-light
, yaml >= 0.7 && < 0.9
, aeson >= 0.7 && < 1.0
, data-default
, syb
, file-embed < 0.1
ghc-options: -O2 -Wall
test-suite test
type: exitcode-stdio-1.0
main-is: TestSuite.hs
hs-source-dirs: src test/src
ghc-options: -O2 -Wall -fwarn-tabs
Build-depends:
base
, bytestring
, text
, criterion
, deepseq
, derive
, HUnit
, pcre-light
, yaml >= 0.7
, aeson
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, data-default
, syb
, filepath
, file-embed