-
Notifications
You must be signed in to change notification settings - Fork 23
/
orgmode-parse.cabal
110 lines (100 loc) · 4.24 KB
/
orgmode-parse.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
Name: orgmode-parse
Version: 0.3.0
Author: Parnell Springmeyer <[email protected]>
Maintainer: Parnell Springmeyer <[email protected]>
License: BSD3
License-File: LICENSE
bug-reports: https://github.com/ixmatus/orgmode-parse/issues
Category: Data
Synopsis: A collection of Attoparsec combinators for parsing org-mode
flavored documents.
Description:
<<https://travis-ci.org/ixmatus/orgmode-parse.svg?branch=master>>
.
`orgmode-parse` is a parsing library for the org-mode flavor of
document markup.
.
The provided Attoparsec combinators parse the human-readable and
textual representation into a simple AST.
Cabal-Version: >= 1.10
Build-Type: Simple
Extra-Source-Files:
LICENSE
CHANGELOG.md
README.md
Library
Default-Language: Haskell2010
HS-Source-Dirs: src
Ghc-options:
-Wall -Werror -fwarn-tabs -funbox-strict-fields -fno-warn-orphans -fno-warn-unused-do-bind
Exposed-Modules:
Data.OrgMode.Parse,
Data.OrgMode.Parse.Attoparsec.Constants,
Data.OrgMode.Parse.Attoparsec.Content,
Data.OrgMode.Parse.Attoparsec.Content.List,
Data.OrgMode.Parse.Attoparsec.Content.Markup,
Data.OrgMode.Parse.Attoparsec.Content.Paragraph,
Data.OrgMode.Parse.Attoparsec.Document,
Data.OrgMode.Parse.Attoparsec.Drawer,
Data.OrgMode.Parse.Attoparsec.Drawer.Generic,
Data.OrgMode.Parse.Attoparsec.Drawer.Logbook,
Data.OrgMode.Parse.Attoparsec.Drawer.Property,
Data.OrgMode.Parse.Attoparsec.Headline,
Data.OrgMode.Parse.Attoparsec.Section,
Data.OrgMode.Parse.Attoparsec.Time,
Data.OrgMode.Parse.Attoparsec.Util,
Data.OrgMode.Parse.Attoparsec.Util.ParseLinesTill,
Data.OrgMode.Types
Build-Depends:
base >= 4.8 && < 5
, aeson >= 1.0
, attoparsec >= 0.13
, bytestring >= 0.10.4
, containers >= 0.5.6
, free >= 4.9
, hashable >= 1.2
, insert-ordered-containers >= 0.2.0.0
, old-locale >= 1.0
, semigroups
, text >= 1.2
, thyme >= 0.3
, unordered-containers >= 0.2.7
Test-Suite tests
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test
Ghc-Options: -Wall -fwarn-tabs -funbox-strict-fields -fno-warn-orphans -fno-warn-unused-do-bind -fbreak-on-error
Main-Is: Test.hs
other-modules:
Content.Contents
, Content.List
, Content.Paragraph
, Document
, Drawer
, Headline
, Timestamps
, Util
, Util.Builder
, Weekdays
Build-Depends:
base >= 4.8 && < 5
, HUnit >= 1.3
, aeson >= 1.0
, attoparsec >= 0.13
, bytestring >= 0.10.4
, containers >= 0.5.6
, free >= 4.9
, hashable >= 1.2
, insert-ordered-containers >= 0.2.0.0
, neat-interpolation >= 0.3
, old-locale >= 1.0
, orgmode-parse
, semigroups
, tasty >= 0.11
, tasty-hunit >= 0.9
, text >= 1.2
, thyme >= 0.3
, unordered-containers >= 0.2.7
Source-Repository head
Type: git
Location: https://github.com/digitalmentat/orgmode-parse