packages feed

rdf-0.1.0.1: rdf.cabal

name:                 rdf
version:              0.1.0.1
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:           pi.boy.travis@gmail.com
copyright:            Travis Whitaker 2016
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.8 && < 5.0
                    , attoparsec >=0.13 && <0.14
                    , bytestring >=0.10 && <0.11
                    , deepseq >=1.4 && <1.5
                    , dlist >= 0.7 && <0.9
                    , fgl >=5.5 && <5.6
                    , text >=1.2 && <1.3
                    , transformers >=0.4 && <0.6
  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