forked from freizl/har
-
Notifications
You must be signed in to change notification settings - Fork 0
/
har.cabal
58 lines (53 loc) · 1.31 KB
/
har.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
-- Initial har.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: har
version: 0.1.1.0
synopsis: HAR spec in Haskell
description:
.
Data type of HAR spec
.
<http://www.softwareishard.com/blog/har-12-spec/>
homepage: https://github.com/freizl/har
license: BSD3
license-file: LICENSE
author: Haisheng.Wu
maintainer: freizl@gmail.com
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/freizl/har
library
exposed-modules:
HAR
HAR.Browser
HAR.Cache
HAR.Content
HAR.Cookie
HAR.Creator
HAR.Entry
HAR.Header
HAR.Log
HAR.Page
HAR.PageTimings
HAR.Param
HAR.PostData
HAR.QueryString
HAR.Request
HAR.Response
HAR.Timings
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.8
, aeson
, bytestring
, directory
, filepath
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields