-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiffbot.cabal
More file actions
60 lines (51 loc) · 1.53 KB
/
diffbot.cabal
File metadata and controls
60 lines (51 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
54
55
56
57
58
59
60
name: diffbot
version: 0.1
synopsis: Simple client for the Diffbot API
description: Simple client for the Diffbot API
homepage: https://github.com/tymmym/diffbot
bug-reports: https://github.com/tymmym/diffbot/issues
license: BSD3
license-file: LICENSE
author: Tim Cherganov
maintainer: cherganov@gmail.com
category: Web
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules:
Diffbot, Diffbot.Crawlbot
other-modules:
Diffbot.Types
Diffbot.Internal
Diffbot.Article
Diffbot.FrontPage
Diffbot.Image
Diffbot.Product
Diffbot.Classifier
build-depends:
aeson == 0.6.*
, base >= 4.5 && < 4.7
, bytestring >= 0.9 && < 0.11
, conduit == 1.0.*
, http-conduit == 2.0.*
, http-types == 0.8.*
, network == 2.4.*
, time == 1.4.*
ghc-options: -Wall -fno-warn-unused-do-bind
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
build-depends:
base >= 4.5 && < 4.7
, bytestring >= 0.9 && < 0.11
, diffbot
, HUnit == 1.2.*
, http-types == 0.8.*
, test-framework == 0.6.*
, test-framework-hunit == 0.3.*
ghc-options: -Wall -fno-warn-unused-do-bind
Source-repository head
type: git
location: git://github.com/tymmym/diffbot.git