Skip to content

Commit f31a9c9

Browse files
committed
package.yaml; version bump
1 parent 77da68b commit f31a9c9

File tree

2 files changed

+251
-128
lines changed

2 files changed

+251
-128
lines changed

package.yaml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: pandoc-crossref
2+
version: '0.2.7.0'
3+
synopsis: Pandoc filter for cross-references
4+
description: pandoc-crossref is a pandoc filter for numbering figures, equations,
5+
tables and cross-references to them.
6+
category: Text
7+
author: Nikolay Yakimov
8+
maintainer: [email protected]
9+
license: GPL-2
10+
license-file: LICENSE.md
11+
github: lierdakil/pandoc-crossref
12+
extra-source-files:
13+
- test/*.inc
14+
data-files:
15+
- demo.md
16+
- test/m2m/*/*
17+
dependencies:
18+
- base >=4.9 && <5
19+
- pandoc ==1.19.*
20+
- pandoc-types ==1.17.*
21+
- mtl >=1.1 && <2.3
22+
- containers >=0.1 && <0.6
23+
- data-default >=0.4 && <0.8
24+
- data-accessor >=0.2.2.6 && <0.3.0.0
25+
- data-accessor-template >=0.2.1.12 && <0.3.0.0
26+
- data-accessor-transformers >=0.2.1.6 && <0.3.0.0
27+
- template-haskell >=2.7.0.0 && <3.0.0.0
28+
- roman-numerals ==0.5.*
29+
- syb >=0.4 && <0.8
30+
- utility-ht >=0.0.11 && <0.1.0
31+
- directory >=1 && <1.4
32+
- filepath >=1.1 && <1.5
33+
- text >=1.2.2 && <1.3
34+
library:
35+
source-dirs: lib
36+
ghc-options: -Wall
37+
exposed-modules:
38+
- Text.Pandoc.CrossRef
39+
executables:
40+
pandoc-crossref:
41+
main: pandoc-crossref.hs
42+
source-dirs: src
43+
ghc-options: -Wall
44+
dependencies:
45+
- pandoc-crossref
46+
tests:
47+
test-pandoc-crossref:
48+
main: test-pandoc-crossref.hs
49+
source-dirs:
50+
- test
51+
- lib
52+
ghc-options:
53+
- -Wall
54+
- -fno-warn-unused-do-bind
55+
- -threaded
56+
dependencies:
57+
- hspec >=2.4.4 && <3
58+
test-integrative:
59+
main: test-integrative.hs
60+
other-modules: []
61+
source-dirs: test
62+
ghc-options:
63+
- -Wall
64+
- -fno-warn-unused-do-bind
65+
- -threaded
66+
dependencies:
67+
- pandoc-crossref
68+
- hspec >=2.4.4 && <3

0 commit comments

Comments
 (0)