packages feed

osm-conduit-0.1.0.0: osm-conduit.cabal

name:                osm-conduit
version:             0.1.0.0
synopsis:            Parse and operate on OSM data in efficient way
description:         Convenient *.osm parsing. See "Data.Conduit.OSM" or README.md
homepage:            http://github.com/przembot/osm-conduit#readme
license:             BSD3
license-file:        LICENSE
author:              Przemysław Kopański
maintainer:          P.Kopanski@stud.elka.pw.edu.pl
copyright:           (c) 2016 Przemysław Kopański
category:            Data, Geography
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Conduit.OSM
                     , Data.Conduit.OSM.Types
  build-depends:       base >= 4.7 && < 5
                     , conduit
                     , xml-types
                     , xml-conduit >= 1.3.2
                     , resourcet
                     , transformers
                     , text
                     , exceptions
  ghc-options:         -Wall
  default-language:    Haskell2010

test-suite osm-conduit-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , osm-conduit
                     , conduit
                     , text
                     , hspec
                     , exceptions
                     , resourcet
                     , xml-conduit
                     , xml-types
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/przembot/osm-conduit