~ubuntu-branches/ubuntu/utopic/haskell-wai-extra/utopic-proposed

« back to all changes in this revision

Viewing changes to wai-extra.cabal

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2014-06-06 11:40:45 UTC
  • mfrom: (15.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140606114045-cc7h7xuui844a1l0
Tags: 3.0.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Name:                wai-extra
2
 
Version:             2.1.1
 
2
Version:             3.0.0
3
3
Synopsis:            Provides some basic WAI handlers and middleware.
4
4
Description:         The goal here is to provide common features without many dependencies.
5
5
License:             MIT
22
22
Library
23
23
  Build-Depends:     base                      >= 4 && < 5
24
24
                   , bytestring                >= 0.9.1.4
25
 
                   , wai                       >= 2.1      && < 2.2
 
25
                   , wai                       >= 3.0      && < 3.1
26
26
                   , old-locale                >= 1.0.0.2  && < 1.1
27
27
                   , time                      >= 1.1.4
28
28
                   , network                   >= 2.2.1.5
29
29
                   , directory                 >= 1.0.1
30
 
                   , transformers              >= 0.2.2    && < 0.4
 
30
                   , transformers              >= 0.2.2
31
31
                   , blaze-builder             >= 0.2.1.4  && < 0.4
32
32
                   , http-types                >= 0.7
33
33
                   , text                      >= 0.7
34
34
                   , case-insensitive          >= 0.2
35
 
                   , data-default
 
35
                   , data-default-class
36
36
                   , fast-logger               >= 2.1      && < 2.2
37
37
                   , wai-logger                >= 2.0      && < 2.2
38
 
                   , conduit                   >= 1.0      && < 1.1
39
 
                   , zlib-conduit              >= 0.5      && < 1.1
40
 
                   , blaze-builder-conduit     >= 0.5      && < 1.1
41
38
                   , ansi-terminal
42
 
                   , resourcet                 >= 0.4.6    && < 0.5
 
39
                   , resourcet                 >= 0.4.6    && < 1.2
43
40
                   , void                      >= 0.5
44
41
                   , stringsearch              >= 0.3      && < 0.4
45
42
                   , containers
46
43
                   , base64-bytestring
47
44
                   , word8
48
45
                   , lifted-base               >= 0.1.2
 
46
                   , deepseq
 
47
                   , streaming-commons
49
48
 
50
49
  if os(windows)
51
50
      cpp-options:   -DWINDOWS
67
66
                     Network.Wai.Middleware.HttpAuth
68
67
                     Network.Wai.Parse
69
68
                     Network.Wai.UrlMap
 
69
                     Network.Wai.Test
 
70
                     Network.Wai.EventSource
 
71
                     Network.Wai.EventSource.EventStream
70
72
  other-modules:     Network.Wai.Middleware.RequestLogger.Internal
71
73
  ghc-options:       -Wall
72
74
 
78
80
 
79
81
    build-depends:   base                      >= 4        && < 5
80
82
                   , wai-extra
81
 
                   , wai-test                  >= 1.3
82
83
                   , hspec                     >= 1.3
83
84
                   , HUnit
84
85
 
89
90
                   , text
90
91
                   , bytestring
91
92
                   , directory
92
 
                   , zlib-bindings
93
93
                   , blaze-builder             >= 0.2.1.4  && < 0.4
94
94
                   , data-default
95
 
                   , conduit
96
95
                   , fast-logger               >= 2.1
97
96
                   , resourcet
98
97
    ghc-options:       -Wall
99
98
 
 
99
test-suite spec
 
100
    type:            exitcode-stdio-1.0
 
101
    hs-source-dirs:  test
 
102
    main-is:         Spec.hs
 
103
    other-modules:   Network.Wai.TestSpec
 
104
    build-depends:   base                      >= 4        && < 5
 
105
                   , wai-extra
 
106
                   , wai
 
107
                   , hspec >= 1.3
 
108
    ghc-options:     -Wall -Werror
 
109
 
100
110
source-repository head
101
111
  type:     git
102
112
  location: git://github.com/yesodweb/wai.git