servant/servant-machines/servant-machines.cabal
Oleg Grenrus a1a99552b5 Changelog and cabal file edits
- Add #1079, #1011 entry
- Stricter internal dependencies
- Unify .cabal files
- Correct -conduit, -machines, -pipes changelog
- Fix years in LICENSEs
- Remove tinc.yamls
- Tweaks to 0.15 changelog
- Add changelogs for all packages
- Add changelogs for new packages (extra-source-files)
2018-11-13 09:58:42 +02:00

64 lines
1.7 KiB
Plaintext

cabal-version: >=1.10
name: servant-machines
version: 0.15
synopsis: Servant Stream support for machines
category: Servant, Web, Enumerator
description: Servant Stream support for machines.
.
Provides 'ToSourceIO' and 'FromSourceIO' instances for 'MachineT'.
homepage: http://haskell-servant.readthedocs.org/
bug-reports: http://github.com/haskell-servant/servant/issues
license: BSD3
license-file: LICENSE
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2018 Servant Contributors
build-type: Simple
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.2
extra-source-files:
CHANGELOG.md
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
, bytestring >=0.10.8.1 && <0.11
, machines >=0.6.4 && <0.7
, mtl >=2.2.2 && <2.3
, servant >=0.15 && <0.16
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
, servant-server >=0.15 && <0.16
, servant-client >=0.15 && <0.16
, wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.3
, http-client
default-language: Haskell2010