-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhttp2-client-grpc-example.cabal
48 lines (46 loc) · 1.61 KB
/
http2-client-grpc-example.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
name: http2-client-grpc-example
version: 0.2.0.0
-- synopsis:
-- description:
homepage: https://github.com/lucasdicioccio/http2-client-grpc-example#readme
license: BSD3
license-file: LICENSE
author: Lucas DiCioccio
maintainer: lucas@dicioccio.fr
copyright: 2017 (Lucas DiCioccio)
category: Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src, gen
exposed-modules: Lib
, SimpleLib
, Proto.Protos.Grpcbin
, Proto.Protos.Grpcbin_Fields
build-depends: base >= 4.7 && < 5
, async
, bytestring
, containers
, http2
, http2-client
, http2-client-grpc >= 0.7.0.0
, http2-grpc-types
, lens
, lifted-async
, lifted-base
, proto-lens >= 0.4
, proto-lens-runtime >= 0.4.0.1
, tls
, process
, process-extras
default-language: Haskell2010
executable http2-client-grpc-example-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, http2-client-grpc-example
, bytestring
, optparse-applicative
default-language: Haskell2010