colonnade/siphon/siphon.cabal

57 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-06-10 02:28:32 +03:00
name: siphon
version: 0.7
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:
base >= 4.7 && < 5
2017-02-24 00:10:16 +03:00
, colonnade >= 1.1 && < 1.2
2016-06-25 21:50:21 +03:00
, text
, bytestring
, contravariant
, 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
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
2016-07-03 17:26:50 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
2016-06-25 21:50:21 +03:00
source-repository head
type: git
location: https://github.com/andrewthad/colonnade