-
Notifications
You must be signed in to change notification settings - Fork 0
/
deeproute.cabal
77 lines (70 loc) · 1.76 KB
/
deeproute.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
cabal-version: 3.0
name: deeproute
version: 0.1.0.0
synopsis: Simple and performant routing and HTTP utilities, meant to be used on top of wai.
description: Simple and performant routing and HTTP utilities, meant to be used on top of wai.
homepage: https://github.com/kadena-io/chainweb
bug-reports: https://github.com/kadena-io/chainweb/issues
license: BSD-3-Clause
license-file: LICENSE
author: Chainweb Dev Team
maintainer: [email protected]
copyright: Copyright (C) 2022 Kadena LLC
category: Web
extra-source-files: CHANGELOG.md
library
exposed-modules:
Web.DeepRoute
build-depends:
base >= 4.13
, aeson
, bytestring
, containers
, http-api-data
, http-media
, http-types
, mtl
, text
hs-source-dirs: src
default-language: Haskell2010
library deeproute-wai
visibility: public
exposed-modules:
Web.DeepRoute.Wai
build-depends:
base >= 4.13
, aeson
, bytestring
, case-insensitive
, containers
, deeproute
, ghc-prim
, http-api-data
, http-media
, http-types
, mtl
, text
, unordered-containers
, wai
hs-source-dirs: src-wai
default-language: Haskell2010
library deeproute-client
visibility: public
exposed-modules:
Web.DeepRoute.Client
build-depends:
base >= 4.13
, aeson
, bytestring
, containers
, deeproute
, http-api-data
, http-client
, http-media
, http-types
, lens
, safe-exceptions
, mtl
, text
hs-source-dirs: src-client
default-language: Haskell2010