robots-txt-0.4.1.6: 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.4.1.6
synopsis: Parser for robots.txt
description: This is an attoparsec parser for robots.txt files
homepage: http://github.com/mwotton/robots
license: BSD3
license-file: LICENSE
author: Mark Wotton
maintainer: mwotton@gmail.com
bug-reports: https://github.com/mwotton/robots/issues
-- copyright:
category: Web
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/mwotton/robots.git
library
exposed-modules: Network.HTTP.Robots
-- other-modules:
hs-source-dirs: src
build-depends: base >= 4 && <= 5
, bytestring
, attoparsec >= 0.12.1.6 && < 0.14
, time >= 1.4
, old-locale >= 1.0.0.5 && < 1.1
default-language: Haskell98
test-suite tests
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test/
main-is: Spec.hs
other-modules: RegressionsSpec
RobotSpec
SmokeSpec
build-depends: base >= 4 && <= 5
, hspec
, QuickCheck
, bytestring
, robots-txt
, directory
, transformers
, attoparsec
, heredoc
default-language: Haskell98