colonnade/siphon/siphon.cabal

56 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-06-10 02:28:32 +03:00
name: siphon
version: 0.7.2
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.1 && < 1.3
2016-06-25 21:50:21 +03:00
, text
, bytestring
, vector
2017-06-10 02:28:32 +03:00
, streaming
, attoparsec
2017-06-10 02:28:32 +03:00
, transformers
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
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