-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathqhs.cabal
More file actions
72 lines (67 loc) · 2.64 KB
/
qhs.cabal
File metadata and controls
72 lines (67 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
cabal-version: 3.0
name: qhs
version: 0.4.2
category: Console
synopsis: Command line tool qhs, SQL queries on CSV and TSV files.
description: This is a Haskell port of <https://github.com/harelba/q q command>.
author: itchyny <itchyny@cybozu.co.jp>
maintainer: itchyny <itchyny@cybozu.co.jp>
homepage: https://github.com/itchyny/qhs
bug-reports: https://github.com/itchyny/qhs/issues
license: MIT
license-file: LICENSE
extra-source-files: stack.yaml stack.yaml.lock README.md _qhs
test/tests/*.csv test/tests/*.csv.gz test/tests/*.out
test/tests/*.sh test/tests/*.sql
common base
default-language: GHC2021
default-extensions: BlockArguments
LambdaCase
NoFieldSelectors
OverloadedRecordDot
build-depends: base >= 4.18 && < 5
ghc-options: -Wdefault -Wall -Wunused-packages
library qhs-lib
import: base
visibility: private
hs-source-dirs: src
exposed-modules: Qhs
Qhs.CLI
Qhs.File
Qhs.Option
Qhs.Parser
Qhs.SQL
Qhs.SQLType
build-depends: bytestring >= 0.11 && < 0.13
, containers >= 0.6 && < 0.7
, cryptonite >= 0.30 && < 0.31
, extra >= 1.7 && < 1.9
, optparse-applicative >= 0.18 && < 0.19
, simple-sql-parser >= 0.8 && < 0.9
, sqlite-simple >= 0.4 && < 0.5
, syb >= 0.7 && < 0.8
, text >= 2.0 && < 2.2
, zlib >= 0.6 && < 0.8
executable qhs
import: base
main-is: Main.hs
other-modules: Paths_qhs
autogen-modules: Paths_qhs
build-depends: qhs-lib
test-suite spec
import: base
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: FileSpec
ParserSpec
QhsSpec
SQLSpec
build-depends: qhs-lib
, containers >= 0.6 && < 0.7
, extra >= 1.7 && < 1.8
, hspec >= 2.11 && < 2.12
, process >= 1.6 && < 1.7
source-repository head
type: git
location: https://github.com/itchyny/qhs.git