forked from romanb/wai-route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwai-route.cabal
64 lines (58 loc) · 1.75 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
name: wai-route
version: 0.3.1
synopsis: Minimalistic, efficient routing for WAI
description:
.
Simple routing for applications using the WAI, based on an
efficient tree structure. Routes are defined as string literals
and path segments prefixed with a ':' indicate captures.
.
A sample is available at: <https://github.com/romanb/wai-route/blob/master/sample/Main.hs>.
license: OtherLicense
license-file: LICENSE
author: Roman S. Borschel
maintainer: Roman S. Borschel <[email protected]>
copyright: 2014 Roman S. Borschel
category: Web
build-type: Simple
extra-source-files: README.md, sample/*.hs
cabal-version: >=1.10
source-repository head
type: git
location: [email protected]:romanb/wai-route.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Network.Wai.Route
, Network.Wai.Route.Tree
build-depends:
base == 4.*
, wai >= 3.0.2 && < 3.3
, unordered-containers >= 0.2
, http-types >= 0.8
, bytestring >= 0.10
ghc-options:
-Wall
-fwarn-tabs
-O2
test-suite wai-route-test
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options:
-Wall
-fwarn-tabs
-threaded
other-modules: Test.Network.Wai.Route
build-depends:
base == 4.*
, bytestring
, http-types
, mtl >= 2.1
, QuickCheck >= 2.5
, tasty >= 0.8
, tasty-quickcheck >= 0.8.1
, wai
, wai-route