-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrdf.cabal
59 lines (55 loc) · 2.09 KB
/
rdf.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
name: rdf
version: 0.1.0.8
synopsis: Representation and Incremental Processing of RDF Data
description:
Data structures, parsers, and encoders for RDF data sets based on the
RDF 1.1 abstract syntax and RFC 3987. The interface is intended to support
incremental graph processing in constant space.
homepage: https://github.com/traviswhitaker/rdf
bug-reports: https://github.com/traviswhitaker/rdf/issues
license: MIT
license-file: LICENSE
author: Travis Whitaker
maintainer: [email protected]
copyright: Travis Whitaker 2016-2012
category: Data
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
library
exposed-modules: Data.RDF.Types
, Data.RDF.Encoder.Common
, Data.RDF.Encoder.NQuads
, Data.RDF.Graph
, Data.RDF.Parser.Common
, Data.RDF.Parser.NQuads
, Data.RDF.ToRDF
other-modules: Data.RDF.Internal
build-depends: base >=4.11 && <5.0
, attoparsec >=0.13 && <0.15
, bytestring >=0.10 && <0.14
, deepseq >=1.4 && <1.7
, dlist >= 0.7 && <1.2
, fgl >=5.5 && <6
, text >=1.2 && <2.3
, transformers >=0.4 && <0.8
hs-source-dirs: src
ghc-options: -Wall
-fwarn-identities
-fwarn-missing-signatures
default-language: Haskell2010
benchmark bench-rdf
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Main.hs
build-depends: base
, bytestring
, criterion
, deepseq
, rdf
, text
ghc-options: -rtsopts
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/TravisWhitaker/rdf.git