colonnade/siphon/siphon.cabal

59 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2021-10-25 18:05:16 +03:00
cabal-version: 3.0
2017-06-10 02:28:32 +03:00
name: siphon
2022-03-18 21:07:57 +03:00
version: 0.8.2.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
2021-10-25 18:05:16 +03:00
license: BSD-3-Clause
2017-06-10 02:28:32 +03:00
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2016 Andrew Martin
category: web
build-type: Simple
2021-10-25 18:05:16 +03:00
extra-source-files: CHANGELOG.md
2016-06-25 21:50:21 +03:00
library
hs-source-dirs: src
2016-06-25 21:50:21 +03:00
exposed-modules:
Siphon
Siphon.Types
build-depends:
base >= 4.8 && < 5
, colonnade >= 1.2 && < 1.3
, text >= 1.0 && < 2.1
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
2023-01-24 15:25:12 +03:00
, transformers >= 0.4.2 && < 0.8
, semigroups >= 0.18.2 && < 0.21
default-language: Haskell2010
2017-12-15 06:30:01 +03:00
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
, HUnit
2016-07-03 17:26:50 +03:00
, QuickCheck
, bytestring
, colonnade
, contravariant
, either
, pipes
2017-02-24 00:10:16 +03:00
, profunctors
, siphon
2017-06-12 03:01:34 +03:00
, streaming
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, text
, vector
2017-06-12 03:01:34 +03:00
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