2017-06-10 02:28:32 +03:00
|
|
|
name: siphon
|
2017-12-15 06:30:01 +03:00
|
|
|
version: 0.8.0
|
2017-06-10 02:28:32 +03:00
|
|
|
synopsis: Encode and decode CSV files
|
|
|
|
description: Please see README.md
|
|
|
|
homepage: https://github.com/andrewthad/colonnade#readme
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Andrew Martin
|
|
|
|
maintainer: andrew.thaddeus@gmail.com
|
|
|
|
copyright: 2016 Andrew Martin
|
|
|
|
category: web
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
2016-06-25 21:50:21 +03:00
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
|
|
|
exposed-modules:
|
|
|
|
Siphon
|
|
|
|
Siphon.Types
|
|
|
|
build-depends:
|
2017-06-12 03:01:34 +03:00
|
|
|
base >= 4.9 && < 5
|
2017-12-15 06:30:01 +03:00
|
|
|
, colonnade >= 1.1.1 && < 1.3
|
|
|
|
, text >= 1.0 && < 1.3
|
2016-06-25 21:50:21 +03:00
|
|
|
, bytestring
|
|
|
|
, vector
|
2017-12-15 06:30:01 +03:00
|
|
|
, streaming >= 0.1.4 && < 0.3
|
2016-06-26 20:48:53 +03:00
|
|
|
, attoparsec
|
2017-12-15 06:30:01 +03:00
|
|
|
, transformers >= 0.5 && < 0.6
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite doctest
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Doctest.hs
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, siphon
|
|
|
|
, doctest >= 0.10
|
2016-06-25 21:50:21 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2016-07-03 17:26:50 +03:00
|
|
|
test-suite siphon-test
|
2017-06-12 03:01:34 +03:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Test.hs
|
2016-07-13 00:47:15 +03:00
|
|
|
build-depends:
|
2016-07-03 17:26:50 +03:00
|
|
|
base
|
|
|
|
, either
|
|
|
|
, siphon
|
|
|
|
, colonnade
|
|
|
|
, contravariant
|
|
|
|
, test-framework
|
|
|
|
, test-framework-quickcheck2
|
|
|
|
, QuickCheck
|
|
|
|
, text
|
|
|
|
, bytestring
|
2016-07-05 04:42:19 +03:00
|
|
|
, pipes
|
|
|
|
, HUnit
|
|
|
|
, test-framework-hunit
|
2017-02-24 00:10:16 +03:00
|
|
|
, profunctors
|
2017-06-12 03:01:34 +03:00
|
|
|
, streaming
|
|
|
|
default-language: Haskell2010
|
2016-07-03 17:26:50 +03:00
|
|
|
|
2016-06-25 21:50:21 +03:00
|
|
|
source-repository head
|
2017-06-12 03:01:34 +03:00
|
|
|
type: git
|
2016-06-25 21:50:21 +03:00
|
|
|
location: https://github.com/andrewthad/colonnade
|