-
Notifications
You must be signed in to change notification settings - Fork 28
/
rdf4h.cabal
176 lines (163 loc) · 6.19 KB
/
rdf4h.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: rdf4h
version: 5.1.0
synopsis: A library for RDF processing in Haskell
description:
'RDF for Haskell' is a library for working with RDF in Haskell.
It includes RDF parsers and serializers for N-Triples
and Turtle, and an RDF parser for RDF/XML. It provides the ability to query
for triples containing a particular subject, predicate, or object, or
selecting triples that satisfy an arbitrary predicate function. It
also supports IRI parsing and resolution, and compiled-time
generation of Haskell modules from Turtle schema files.
author: Rob Stewart, Pierre Le Marre, Slava Kravchenko, Calvin Smith, Fabian Meyer, koslambrou, Tim McIver
copyright: (c) Rob Stewart, Calvin Smith
maintainer: Rob Stewart <[email protected]>
homepage: https://github.com/robstewart57/rdf4h
bug-reports: https://github.com/robstewart57/rdf4h/issues
license: BSD3
license-file: LICENSE.txt
cabal-version: >= 1.10
build-type: Simple
category: RDF
stability: stable
tested-with: GHC==9.2.5
extra-tmp-files: test
extra-source-files: examples/ParseURLs.hs
, examples/ESWC.hs
, examples/BuildRDFGraph.hs
, resources/dcterms.ttl
, resources/foaf.ttl
, resources/skos.ttl
, resources/owl.ttl
, resources/rdfs.ttl
, resources/rdf.ttl
, resources/shacl.ttl
, resources/vann.ttl
, resources/xsd.ttl
source-repository head
type: git
location: https://github.com/robstewart57/rdf4h.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Data.RDF
, Data.RDF.BlankNode
, Data.RDF.IRI
, Data.RDF.Namespace
, Data.RDF.Types
, Data.RDF.Query
, Data.RDF.Graph.AdjHashMap
, Data.RDF.Graph.AlgebraicGraph
, Data.RDF.Graph.TList
, Data.RDF.State
, Data.RDF.Vocabulary.Generator.VocabularyGenerator
, Data.RDF.Vocabulary.DCTerms
, Data.RDF.Vocabulary.OWL
, Data.RDF.Vocabulary.RDF
, Data.RDF.Vocabulary.XSD
, Data.RDF.Vocabulary.VANN
, Data.RDF.Vocabulary.SHACL
, Data.RDF.Vocabulary.RDFS
, Data.RDF.Vocabulary.FOAF
, Data.RDF.Vocabulary.SKOS
, Text.RDF.RDF4H.TurtleParser
, Text.RDF.RDF4H.TurtleSerializer
, Text.RDF.RDF4H.NTriplesParser
, Text.RDF.RDF4H.NTriplesSerializer
, Text.RDF.RDF4H.XmlParser
, Text.RDF.RDF4H.XmlParser.Identifiers
, Text.RDF.RDF4H.ParserUtils
, Text.RDF.RDF4H.TurtleSerializer.Internal
build-depends: attoparsec
, base >= 4.8.0.0
, bytestring
, filepath
, containers
, parsec >= 3
-- , HTTP >= 4000.0.0
-- , hxt >= 9.3.1.2
, text >= 1.2.1.0
, algebraic-graphs >= 0.5
, unordered-containers >= 0.2.10.0
, hashable
, deepseq
, binary
, parsers
, mtl
, network-uri >= 2.6
-- , xmlbf >= 0.6
-- , xmlbf-xeno
, lifted-base
, http-conduit >= 2.2.0
, mmorph
, exceptions
, selective
, html-entities
, xeno
, template-haskell >= 2.18.0
other-modules: Text.RDF.RDF4H.XmlParser.Xmlbf
, Text.RDF.RDF4H.XmlParser.Xeno
if impl(ghc < 7.6)
build-depends: ghc-prim
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
executable rdf4h
default-language: Haskell2010
main-is: src/Rdf4hParseMain.hs
build-depends: base >= 4.8.0.0 && < 6
, rdf4h
, containers
, text >= 1.2.1.0
if impl(ghc < 7.6)
build-depends: ghc-prim
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
test-suite test-rdf4h
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: testsuite/tests
other-modules: Data.RDF.PropertyTests
Data.RDF.GraphImplTests
Data.RDF.IRITests
Data.RDF.BlankNodeTests
Text.RDF.RDF4H.TurtleSerializerTest
Text.RDF.RDF4H.TurtleParser_ConformanceTest
Text.RDF.RDF4H.XmlParser_Test
W3C.Manifest
W3C.NTripleTest
W3C.TurtleTest
W3C.RdfXmlTest
W3C.W3CAssertions
build-depends: base >= 4.8.0.0 && < 6
, rdf4h
, tasty
, tasty-hunit
, tasty-quickcheck
, QuickCheck >= 1.2.0.0
, HUnit >= 1.2.2.1
, containers
, text >= 1.2.1.0
, filepath
, directory
, safe
, temporary
, bytestring
if impl(ghc < 7.6)
build-depends: ghc-prim
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
benchmark rdf4h-bench
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: MainCriterion.hs
build-depends: base >= 4.8.0.0,
deepseq,
criterion,
rdf4h,
text >= 1.2.1.0
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints