2015-02-27 18:14:32 +01:00
|
|
|
-- Initial grpc-haskell.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: grpc-haskell
|
|
|
|
version: 0.0.0.0
|
|
|
|
synopsis: Haskell implementation of gRPC layered on shared C library.
|
|
|
|
-- description:
|
|
|
|
homepage: http://github.com/aloiscochard/grpc-haskell
|
|
|
|
license: Apache-2.0
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Alois Cochard
|
|
|
|
maintainer: alois.cochard@gmail.com
|
|
|
|
-- copyright:
|
|
|
|
category: Network
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Network.GRPC
|
2015-03-02 15:48:18 +01:00
|
|
|
Network.GRPC.Time
|
2015-02-27 18:14:32 +01:00
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
2015-03-02 15:48:18 +01:00
|
|
|
extra-libraries:
|
|
|
|
grpc
|
|
|
|
includes:
|
|
|
|
grpc/grpc.h
|
|
|
|
, grpc/support/time.h
|
2015-02-27 18:14:32 +01:00
|
|
|
build-tools: c2hs
|
2015-03-02 15:48:18 +01:00
|
|
|
build-depends:
|
|
|
|
base >=4.7 && <4.8
|
|
|
|
, clock >=0.4 && <0.5
|
2015-02-27 18:14:32 +01:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|