-
Notifications
You must be signed in to change notification settings - Fork 14
/
wai-routes.cabal
86 lines (81 loc) · 2.87 KB
/
wai-routes.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
name : wai-routes
version : 0.10.4
cabal-version : 1.18
build-type : Simple
license : MIT
license-file : LICENSE
maintainer : [email protected]
stability : Experimental
homepage : https://ajnsit.github.io/wai-routes/
synopsis : Typesafe URLs for Wai applications.
description : Provides easy to use typesafe URLs for Wai Applications. See README for more information. Also see examples/ directory for usage examples.
category : Network
author : Anupam Jain
data-dir : ""
extra-source-files : README.md
source-repository head
type : git
location : http://github.com/ajnsit/wai-routes
source-repository this
type : git
location : http://github.com/ajnsit/wai-routes/tree/v0.10.4
tag : v0.10.4
library
build-depends : base
, wai
, wai-extra
, text
, template-haskell
, mtl
, aeson
, containers
, random
, path-pieces
, bytestring
, http-types
, blaze-builder
, monad-loops
, case-insensitive
, mime-types
, filepath
, cookie
, data-default-class
, vault
, safe-exceptions
exposed-modules : Wai.Routes, Network.Wai.Middleware.Routes
other-modules : Routes.Parse
Routes.Overlap
Routes.Class
Routes.Routes
Routes.Monad
Routes.Handler
Routes.ContentTypes
Routes.DefaultRoute
Routes.TH
Routes.TH.Types
Routes.TH.Dispatch
Routes.TH.ParseRoute
Routes.TH.RenderRoute
Routes.TH.RouteAttrs
Util.Free
exposed : True
buildable : True
hs-source-dirs : src
default-language : Haskell2010
ghc-options : -Wall
test-suite test
main-is : Spec.hs
other-modules : HelloSpec
type : exitcode-stdio-1.0
default-language : Haskell2010
hs-source-dirs : test
GHC-options : -Wall -threaded -fno-warn-orphans
build-depends : base
, wai
, aeson
, hspec
, hspec-wai
, hspec-wai-json
, text
, wai-routes
ghc-options : -Wall