-
Notifications
You must be signed in to change notification settings - Fork 0
/
eved.cabal
45 lines (42 loc) · 1.64 KB
/
eved.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
name: eved
version: 0.0.4.0
synopsis: A value level web framework
description: A value level web framework in the style of servant
homepage: https://github.com/foxhound-systems/eved#readme
license: BSD3
license-file: LICENSE
author: Ben Levy
maintainer: ben@foxhound.systems
copyright: 2021 Ben Levy
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Web.Eved
Web.Eved.Auth
Web.Eved.Client
Web.Eved.ContentType
Web.Eved.Header
Web.Eved.Internal
Web.Eved.QueryParam
Web.Eved.Server
Web.Eved.Options
Web.Eved.UrlElement
build-depends: base >= 4.7 && < 5
, aeson >=1.3.1.1 && <1.6
, invariant >= 0.5 && < 0.6
, bytestring >=0.10.8.2 && <0.11
, case-insensitive >=1.2.0.20 && <1.3
, http-types >=0.12.2 && <0.13
, http-media >=0.7.1.3 && <0.9
, http-client >=0.5.14 && <0.7
, http-api-data >=0.3.8.1 && <0.5
, mtl >=2.2.2 && <2.3
, text >=1.2.3.1 && <1.3
, wai >=3.2.1.2 && <3.3
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/foxhound-systems/eved