-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhaquery.cabal
39 lines (35 loc) · 1.25 KB
/
haquery.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
name: haquery
version: 0.1.1.3
synopsis: jQuery for Haskell.
description: haquery allows CSS selector queries on tagsoup trees
homepage: https://github.com/crufter/haquery
license: BSD3
license-file: LICENSE
author: Janos Dobronszki
maintainer: [email protected]
category: HTML
build-type: Simple
cabal-version: >=1.8
source-repository head
type: github
location: https://github.com/crufter/haquery
library
exposed-modules: Haquery
build-depends: base >= 4.5 && < 5,
containers >= 0.6.5 && < 0.7,
parsec >= 3.1.15 && < 3.2,
transformers >= 0.5.6 && < 0.7,
text >= 1.2.5 && < 2.1,
split >= 0.2.3 && < 0.3,
tagsoup >= 0.14.8 && < 0.15
hs-source-dirs: src
Test-Suite test-haquery
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
other-modules: HaquerySpec
build-depends: base,
haquery,
hspec >=2.0 && <2.12,
text
build-tool-depends: hspec-discover:hspec-discover == 2.*