packages feed

qhs-0.3.2: qhs.cabal

name:                   qhs
version:                0.3.2
author:                 itchyny <https://github.com/itchyny>
maintainer:             itchyny <https://github.com/itchyny>
license:                MIT
license-file:           LICENSE
category:               Console
build-type:             Simple
cabal-version:          >=1.10
synopsis:               Command line tool qhs, SQL queries on CSV and TSV files.
description:            This is a Haskell port of q command (https://github.com/harelba/q).

executable qhs
  hs-source-dirs:       src
  main-is:              Main.hs
  ghc-options:          -threaded -Wall
  default-language:     Haskell2010
  other-modules:        Parser
                      , SQL
                      , SQLType
                      , File
                      , Option
                      , Paths_qhs
  build-depends:        base >= 4.9 && < 5
                      , bytestring
                      , containers
                      , cryptonite
                      , optparse-applicative
                      , simple-sql-parser >= 0.6.0
                      , split
                      , sqlite-simple
                      , syb >= 0.4
                      , text
                      , zlib

test-suite spec
  hs-source-dirs:       test,src
  main-is:              Spec.hs
  ghc-options:          -threaded -Wall
  other-modules:        Parser
                      , SQL
                      , SQLType
                      , File
                      , Option
                      , Paths_qhs
                      , ParserSpec
                      , SQLSpec
                      , FileSpec
                      , MainSpec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  build-depends:        base >= 4.9 && < 5
                      , bytestring
                      , containers
                      , cryptonite
                      , hspec
                      , optparse-applicative
                      , process
                      , simple-sql-parser >= 0.6.0
                      , split
                      , sqlite-simple
                      , syb >= 0.4
                      , text
                      , zlib

source-repository head
  type:     git
  location: git@github.com:itchyny/qhs.git