gRPC-haskell/grpc-haskell.cabal

48 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-02-27 18:14:32 +01:00
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: Copyright 2015 Alois Cochard
2015-02-27 18:14:32 +01:00
category: Network
build-type: Simple
cabal-version: >=1.10
extra-source-files: cbits, include
2015-02-27 18:14:32 +01:00
library
build-depends:
base >=4.7 && <4.8
, clock >=0.4 && <0.5
c-sources:
cbits/grpc_haskell.c
2015-02-27 18:14:32 +01:00
exposed-modules:
Network.GRPC.Core
Network.GRPC.Core.Constants
Network.GRPC.Core.Time
extra-libraries:
grpc
includes:
include/grpc_haskell.h
, grpc/grpc.h
, grpc/status.h
, grpc/support/time.h
2015-02-27 18:14:32 +01:00
build-tools: c2hs
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-patterns
include-dirs: include
2015-02-27 18:14:32 +01:00
hs-source-dirs: src
test-suite test
build-depends:
base
, QuickCheck >= 2.7 && < 2.8
2015-02-27 18:14:32 +01:00
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-patterns -O2 -threaded -rtsopts
hs-source-dirs: tests
main-is: Properties.hs
type: exitcode-stdio-1.0