colonnade/siphon/siphon.cabal

61 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-06-25 21:50:21 +03:00
name: siphon
version: 0.1
synopsis: Generic types and functions for columnar encoding and decoding
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
library
hs-source-dirs: src
exposed-modules:
Siphon.Text
Siphon.ByteString.Char8
Siphon
Siphon.Types
Siphon.Content
2016-06-25 21:50:21 +03:00
Siphon.Encoding
2016-06-27 04:55:47 +03:00
Siphon.Decoding
Siphon.Internal
2016-06-25 21:50:21 +03:00
build-depends:
base >= 4.7 && < 5
, colonnade
, text
, bytestring
, contravariant
, vector
, pipes
, attoparsec
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:
base
, either
, siphon
, colonnade
, contravariant
, test-framework
, test-framework-quickcheck2
, QuickCheck
, text
, bytestring
, pipes
, HUnit
, test-framework-hunit
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