forked from joneshf/servant-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-ruby.cabal
52 lines (48 loc) · 1.84 KB
/
servant-ruby.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
49
50
51
52
name: servant-ruby
version: 0.9.0.0
synopsis: Generate a Ruby client from a Servant API with Net::HTTP.
description: Generate a Ruby client from a Servant API with Net::HTTP. :)
homepage: https://github.com/joneshf/servant-ruby#readme
license: BSD3
license-file: LICENSE
author: Hardy Jones
maintainer: [email protected]
copyright: 2017 Hardy Jones
category: Servant, Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.2, GHC == 8.8.4, GHC == 8.10.4
library
hs-source-dirs: src
exposed-modules: Servant.Ruby
build-depends: base >= 4.8 && < 5
, casing >= 0.1 && < 0.2
, servant-foreign >= 0.9 && < 0.16
, text >= 1.2 && < 1.3
default-language: Haskell2010
ghc-options: -Wall
test-suite doc-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test/doc
build-depends: base
, doctest >= 0.11
, QuickCheck >= 2.9
default-language: Haskell2010
test-suite golden-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test/golden
build-depends: base
, bytestring >= 0.10.8.2
, servant >= 0.9 && < 0.21
, servant-foreign >= 0.9 && < 0.16
, servant-ruby
, tasty >= 0.11.3
, tasty-golden >= 2.3.1.1
, text >= 1.2 && < 1.3
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/joneshf/servant-ruby