-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhsbooru.cabal
110 lines (98 loc) · 3.67 KB
/
hsbooru.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: hsbooru
version: 2.4.0.0
synopsis: booru scraper based on xapian
license: GPL-3
license-file: LICENSE
author: Niklas Haas
maintainer: [email protected]
copyright: (c) 2016-2017, Niklas Haas
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
description:
Scraper for *booru websites based on xapian. Currently only supports
gelbooru, but it would be very easy to extend.
library
exposed: False
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -O2 -Wall -fno-warn-name-shadowing -fno-warn-orphans
-fno-warn-missing-signatures -fno-warn-type-defaults
exposed-modules: HsBooru.Scraper
, HsBooru.Sites
, HsBooru.Stats
, HsBooru.Types
, HsBooru.Util
, HsBooru.Xapian
other-modules: HsBooru.Xapian.FFI
c-sources: src/HsBooru/Xapian/cbits.cc
cc-options: -Wall -fPIC
extra-libraries: xapian, stdc++
default-extensions: RecordWildCards
, LambdaCase
, BangPatterns
, ViewPatterns
, StrictData
other-extensions: TemplateHaskell
, TypeFamilies
, FlexibleInstances
, OverloadedStrings
, ForeignFunctionInterface
, GeneralizedNewtypeDeriving
, CPP
build-depends: base >=4.11
, async >=2.1
, transformers >=0.4
, mtl >=2.2
, data-default >=0.7
, time >=1.5
, clock >=0.4
, safecopy >=0.9
, split >=0.2
, acid-state >=0.14
, utf8-string >=1.0
, bytestring >=0.9
, intset >=0.1.2.1
, containers >=0.4
, text >=1.2
, http-client >=0.5
, http-client-tls >=0.3
, http-types >=0.9
, directory >=1.2
, filepath >=1.4
, scalpel-core >=0.5
, streaming >=0.1
, pipes-concurrency >=2.0
executable hsbooru
default-language: Haskell2010
ghc-options: -O2 -Wall -threaded -rtsopts
main-is: Main.hs
default-extensions: RecordWildCards
build-depends: base
, hsbooru
, filepath >=1.4
, directory >=1.2
, acid-state >=0.14
, optparse-applicative >=0.13
, text >=1.2
test-suite hsbooru-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Tests.hs
build-depends: base >=4.8
, hsbooru
, test-framework >=0.8
, test-framework-quickcheck2 >=0.3
, test-framework-hunit >=0.3
, test-framework-th-prime
, doctest >=0.11
, QuickCheck >=2.9
, HUnit >=1.3
, bytestring >=0.9
, acid-state >=0.14
, time >=1.5
, intset >=0.1
, containers >=0.4
, streaming >=0.1
, text >=1.2