servant-reflex/servant-reflex.cabal
2016-08-29 21:22:00 -04:00

63 lines
1.7 KiB
Plaintext

Name: servant-reflex
Version: 0.2
Synopsis: Servant reflex API generator
Description: Servant reflex API generator
License: AllRightsReserved
License-file: LICENSE.md
Author: Greg Hale, Doug Beardsley
Maintainer: imalsogreg@gmail.com
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.10
library
exposed-modules:
Servant.Reflex
other-modules:
Servant.Common.BaseUrl
Servant.Common.Req
hs-source-dirs: src
build-depends:
base >= 4.8 && < 4.10,
bytestring >= 0.10 && < 0.11,
case-insensitive >= 1.2.0.4 && < 1.3,
containers >= 0.5.6 && < 0.6,
data-default >= 0.5 && < 0.8,
exceptions >= 0.8 && < 0.9,
ghcjs-dom >= 0.2 && < 0.3,
http-api-data >= 0.2 && < 0.3,
http-media >= 0.6 && < 0.7,
mtl >= 2.2.1 && < 2.3,
network-uri >= 2.6 && < 2.7,
reflex >= 0.5 && < 0.6,
reflex-dom == 0.4 && < 0.5,
safe >= 0.3.9 && < 0.4,
servant >= 0.5 && < 0.9,
string-conversions >= 0.4 && < 0.5,
text >= 1.2 && < 1.3,
transformers >= 0.4 && < 0.6
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2
default-language: Haskell2010
executable example
build-depends: reflex, servant-reflex, base, scientific, servant, reflex-dom, text
default-language: Haskell2010
main-is: Example.hs
other-modules: API
hs-source-dirs: exec
test-suite testsuite
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
ghc-prof-options: -auto
ghc-options: -Wall -fwarn-tabs -O2 -fhpc -threaded
other-modules:
default-language: Haskell2010
build-depends: base