2018-11-12 21:04:29 +01:00
|
|
|
cabal-version: >=1.10
|
2018-06-26 19:11:28 +02:00
|
|
|
name: servant-machines
|
2018-11-12 21:04:29 +01:00
|
|
|
version: 0.15
|
2020-01-23 11:31:41 +01:00
|
|
|
x-revision: 4
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2018-06-26 19:11:28 +02:00
|
|
|
synopsis: Servant Stream support for machines
|
2018-11-12 21:04:29 +01:00
|
|
|
category: Servant, Web, Enumerator
|
2018-06-26 19:11:28 +02:00
|
|
|
description: Servant Stream support for machines.
|
2018-11-12 21:04:29 +01:00
|
|
|
.
|
|
|
|
Provides 'ToSourceIO' and 'FromSourceIO' instances for 'MachineT'.
|
|
|
|
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2018-11-12 21:04:29 +01:00
|
|
|
bug-reports: http://github.com/haskell-servant/servant/issues
|
2018-06-26 19:11:28 +02:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
2019-02-27 17:13:35 +01:00
|
|
|
copyright: 2018-2019 Servant Contributors
|
2018-06-26 19:11:28 +02:00
|
|
|
build-type: Simple
|
|
|
|
tested-with:
|
|
|
|
GHC ==8.0.2
|
|
|
|
|| ==8.2.2
|
|
|
|
|| ==8.4.4
|
2019-09-07 10:46:11 +02:00
|
|
|
|| ==8.6.5
|
2020-07-17 15:01:00 +02:00
|
|
|
|| ==8.8.3
|
2020-07-17 16:17:45 +02:00
|
|
|
|| ==8.10.1
|
2018-06-26 19:11:28 +02:00
|
|
|
|
2018-11-12 21:04:29 +01:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
|
2018-06-26 19:11:28 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: http://github.com/haskell-servant/servant-machines.git
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Servant.Machines
|
|
|
|
build-depends:
|
|
|
|
base >=4.9 && <5
|
2018-11-09 18:04:47 +01:00
|
|
|
, bytestring >=0.10.8.1 && <0.11
|
2019-05-28 14:27:52 +02:00
|
|
|
, machines >=0.6.4 && <0.8
|
2018-11-09 18:04:47 +01:00
|
|
|
, mtl >=2.2.2 && <2.3
|
2020-01-23 11:31:41 +01:00
|
|
|
, servant >=0.15 && <0.18
|
2018-06-26 19:11:28 +02:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
test-suite example
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Main.hs
|
|
|
|
hs-source-dirs:
|
|
|
|
example
|
|
|
|
ghc-options: -Wall -rtsopts -threaded
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, base-compat
|
|
|
|
, bytestring
|
|
|
|
, http-media
|
|
|
|
, servant
|
|
|
|
, machines
|
|
|
|
, servant-machines
|
2020-01-23 11:31:41 +01:00
|
|
|
, servant-server >=0.15 && <0.18
|
|
|
|
, servant-client >=0.15 && <0.18
|
2018-11-09 18:04:47 +01:00
|
|
|
, wai >=3.2.1.2 && <3.3
|
2019-12-15 00:12:05 +01:00
|
|
|
, warp >=3.2.25 && <3.4
|
2018-06-26 19:11:28 +02:00
|
|
|
, http-client
|
|
|
|
default-language: Haskell2010
|