-
Notifications
You must be signed in to change notification settings - Fork 1
/
my-clippings-csv.cabal
49 lines (46 loc) · 1.67 KB
/
my-clippings-csv.cabal
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
cabal-version: 3.0
name: my-clippings-csv
version: 0.1.0.0
synopsis: Convert Chinese 'My Clippings.txt' to CSV file.
homepage: https://github.com/sinofp/my-clippings-csv
license: BSD-2-Clause
license-file: LICENSE
author: sinofp
maintainer: [email protected]
category: Text
extra-source-files: CHANGELOG.md
library
exposed-modules: Parser, CSV
build-depends: base ^>=4.17.2.0,
megaparsec ^>=9.3.0,
cassava ^>=0.5.3.0,
mtl ^>=2.2.0,
text ^>=2.0.0,
bytestring ^>=0.11.3.0,
filepath ^>=1.4.2.0,
time ^>=1.12.0.0
hs-source-dirs: src
default-language: Haskell2010
executable my-clippings-csv
main-is: Main.hs
build-depends: base ^>=4.17.2.0,
text ^>=2.0.0,
bytestring ^>=0.11.3.0,
megaparsec ^>=9.3.0,
directory ^>=1.3.7.0,
optparse-applicative ^>=0.17.1.0,
mtl ^>=2.2.0,
my-clippings-csv
hs-source-dirs: app
default-language: Haskell2010
test-suite my-clippings-csv-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.17.2.0,
time ^>=1.12.0.0,
megaparsec ^>=9.3.0,
hspec ^>=2.10.0,
hspec-megaparsec ^>=2.2.0,
my-clippings-csv