colonnade/siphon/siphon.cabal

66 lines
1.3 KiB
Plaintext
Raw Normal View History

2017-06-10 02:28:32 +03:00
name: siphon
2018-06-14 23:24:58 +03:00
version: 0.8.1
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
, colonnade >= 1.2 && < 1.3
2017-12-15 06:30:01 +03:00
, 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
, 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
2018-10-23 23:39:24 +03:00
test-suite test
2017-06-12 03:01:34 +03:00
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends:
2016-07-03 17:26:50 +03:00
base
, either
, siphon
, colonnade
, contravariant
, test-framework
, test-framework-quickcheck2
, QuickCheck
, text
, bytestring
, 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