-
Notifications
You must be signed in to change notification settings - Fork 2
/
request.cabal
29 lines (27 loc) · 1.02 KB
/
request.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
name: request
version: 0.2.2.0
-- synopsis:
description: "HTTP client for haskell, inpired by requests and http-dispatch."
homepage: https://github.com/aisk/request#readme
license: BSD3
license-file: LICENSE
author: An Long
maintainer: [email protected]
copyright: 2020 An Long
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Network.HTTP.Request
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.12 && < 0.12
, case-insensitive >= 1.2.1 && < 1.3
, http-client >= 0.6.4 && < 0.8
, http-types >= 0.12.3 && < 0.13
, http-client-tls >= 0.3.5 && < 0.4
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/aisk/request