1name:                pandoc-preproc
2version:             0.1.0.0
3github:              "cormacrelf/citeproc-rs"
4license:             BSD3
5author:              "Cormac Relf"
6maintainer:          "web@cormacrelf.net"
7copyright:           "2019 Cormac Relf"
8
9extra-source-files:
10- README.md
11- ChangeLog.md
12
13# Metadata used when publishing your package
14# synopsis:            Short description of your package
15# category:            Web
16
17# To avoid duplicated efforts in documentation and dealing with the
18# complications of embedding Haddock markup inside cabal files, it is
19# common to point users to the README.md file.
20description:         Please see the README on GitHub at <https://github.com/githubuser/pandoc-preproc#readme>
21
22dependencies:
23- base >= 4.7 && < 5
24- pandoc >= 2.6 && < 3
25- pandoc-types >= 1.17.5.4 && < 1.18
26- aeson
27- lens
28- lens-aeson
29- bytestring
30- text
31- data-default
32- containers
33- vector
34
35library:
36  source-dirs: src
37
38executables:
39  pandoc-preproc:
40    main:                Main.hs
41    source-dirs:         app
42    ghc-options:
43    - -threaded
44    - -rtsopts
45    - -with-rtsopts=-N
46    dependencies:
47    - pandoc-preproc
48
49tests:
50  pandoc-preproc-test:
51    main:                Spec.hs
52    source-dirs:         test
53    ghc-options:
54    - -threaded
55    - -rtsopts
56    - -with-rtsopts=-N
57    dependencies:
58    - pandoc-preproc
59