robots-txt-0.2.0.0: robots-txt.cabal
-- Initial robots-txt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: robots-txt
version: 0.2.0.0
synopsis: Parser for robots.txt
description: This is an attoparsec parser for robots.txt files
homepage: http://github.com/meanpath/robots
license: BSD3
license-file: LICENSE
author: Mark Wotton
maintainer: mwotton@gmail.com
bug-reports: https://github.com/meanpath/robots/issues
-- copyright:
category: Web
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/meanpath/robots-txt.git
library
exposed-modules: Network.HTTP.Robots
-- other-modules:
hs-source-dirs: src
build-depends: base >= 4 && <= 5
, bytestring
, attoparsec
test-suite tests
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test/
main-is: Spec.hs
build-depends: base >= 4 && <= 5
, hspec
, QuickCheck
, bytestring
, robots-txt
, directory
, transformers
, attoparsec
, heredoc