-
Notifications
You must be signed in to change notification settings - Fork 3
/
wai-route.cabal
88 lines (73 loc) · 1.94 KB
/
wai-route.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
name: wai-route
version: 1.0.0
synopsis: WAI middleware for path-based request routing with captures.
category: Web
description:
WAI middleware for path-based request routing with captures,
including further utilities for processing query strings and
request headers.
license: MPL-2.0
license-file: LICENSE
author: Roman S. Borschel
maintainer: Roman S. Borschel <roman@pkaboo.org>
copyright: 2018 Roman S. Borschel
build-type: Simple
cabal-version: 1.18
tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.2
extra-source-files:
README.md, CHANGELOG.md, examples/*.hs
source-repository head
type: git
location: git@github.com:romanb/wai-route.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Network.Wai.Route
default-extensions:
NoImplicitPrelude
build-depends:
base >= 4.9 && < 5
, bytestring >= 0.10
, containers >= 0.5.7
, deepseq >= 1.4.3
, http-api-data >= 0.3
, http-types >= 0.8
, pattern-trie >= 0.1
, text
, unordered-containers >= 0.2
, wai >= 3.0.2 && < 3.3
ghc-options:
-Wall
-fwarn-tabs
test-suite wai-route-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Test.Network.Wai.Route
build-depends:
base == 4.*
, bytestring
, containers
, deepseq
, http-types
, mtl >= 2.1
, pattern-trie
, QuickCheck >= 2.10
, tasty >= 0.11
, tasty-quickcheck >= 0.9
, text
, unordered-containers
, wai
, wai-route
ghc-options:
-Wall
-fwarn-tabs
-threaded
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends: base, doctest >= 0.16