packages feed

captcha-core-0.1.0.1: captcha-core.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           captcha-core
version:        0.1.0.1
synopsis:       A package for integrating a variety of captcha solving services.
description:    A package for integrating a variety of captcha solving services.
                .
                Feature list:
                .
                * Makes use of the [lens](https://hackage.haskell.org/package/lens) package
                * Mtl-style typeclass, allowing you to use your own monad transformer stack
                * No exceptions are thrown. Errors are shown explicitly through its type signature
                * Minimal test suite provided for each captcha type
                * Captcha services are separated into different packages. Use what you need!
category:       Network
homepage:       https://github.com/qwbarch/captcha-haskell#readme
bug-reports:    https://github.com/qwbarch/captcha-haskell/issues
author:         Edward Yang
maintainer:     qwbarch@gmail.com
copyright:      2021 Edward Yang
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/qwbarch/captcha-haskell

library
  exposed-modules:
      Captcha
      Captcha.Internal
      Captcha.Internal.Monad
      Captcha.Internal.Monad.Class
      Captcha.Internal.Request
      Captcha.Internal.Types
  other-modules:
      Paths_captcha_core
  hs-source-dirs:
      src
  ghc-options: -Wall -Wno-name-shadowing
  build-depends:
      aeson >=1.5.6 && <1.6
    , base >=4.7 && <5
    , bytestring >=0.10.12.0 && <0.11
    , cookie >=0.4.5 && <0.5
    , data-default-extra >=0.1.0 && <0.2
    , lens >=4.19.2 && <5.1
    , mtl >=2.2.2 && <2.3
    , o-clock >=1.2.1 && <1.3
    , string-conversions >=0.4.0.1 && <0.5
    , text >=1.2.4.1 && <1.3
    , unliftio >=0.2.20 && <0.3
    , wreq >=0.5.3.3 && <0.6
  default-language: Haskell2010