-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhspec-snap.cabal
60 lines (57 loc) · 2.24 KB
/
hspec-snap.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
name: hspec-snap
version: 1.0.3.0
synopsis: A library for testing with Hspec and the Snap Web Framework
homepage: https://github.com/dbp/hspec-snap
license: BSD3
license-file: LICENSE
author: Daniel Patterson
maintainer: [email protected]
extra-source-files: CHANGELOG
category: Web, Snap
build-type: Simple
cabal-version: 1.18
source-repository head
type: git
location: https://github.com/dbp/hspec-snap
library
exposed-modules:
Test.Hspec.Snap
hs-source-dirs: src
build-depends: base >= 4.6 && < 5
, aeson >= 0.6 && < 1.6
, bytestring >= 0.9 && < 0.12
, containers >= 0.4 && < 0.7
, digestive-functors >= 0.7 && < 0.9
, hspec >= 2.2 && < 2.8
, hspec-core >= 2.2 && < 2.8
, HUnit >= 1.5 && < 1.7
, hxt >= 9.3 && < 9.4
, HandsomeSoup >= 0.3 && < 0.5
, lens >= 3.10 && < 5
, mtl >= 2 && < 3
, snap >= 1.0 && < 1.2
, snap-core >= 1.0 && < 1.2
, text >= 0.11 && < 1.3
, transformers >= 0.3 && < 0.6
Test-Suite test-hspec-snap
type: exitcode-stdio-1.0
hs-source-dirs: spec
main-is: Main.hs
other-modules: Utils
build-depends: base
, aeson
, bytestring
, containers
, digestive-functors
, directory >= 1.2 && < 1.4
, hspec
, hspec-core
, hxt
, HandsomeSoup
, lens
, mtl
, snap
, snap-core
, text
, transformers
build-depends: hspec-snap