-
Notifications
You must be signed in to change notification settings - Fork 3
/
har.cabal
55 lines (50 loc) · 1.36 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
-- Initial har.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: har
version: 0.4.0
synopsis: HAR spec in Haskell
description:
.
Data type of HAR spec: <https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HAR/Overview.html>
homepage: https://github.com/freizl/har
license: BSD3
license-file: LICENSE
author: Haisheng.Wu
maintainer: [email protected]
copyright: @2015-2017 Haisheng Wu
category: Data
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 8.10.7, GHC == 9.2.4
-- extra-source-files:
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
build-depends: base >=4.6 && <5.0
, aeson
, bytestring
, directory
, filepath
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields