packages feed

imgur-1.0: imgur.cabal

cabal-version: 1.12
name:           imgur
version:        1.0
synopsis:       A function to post an image to imgur
description:    Please see README.md
category:       Tools
homepage:       https://github.com/ethercrow/imgur#readme
bug-reports:    https://github.com/ethercrow/imgur/issues
maintainer:     Dmitry Ivanov <ethercrow@gmail.com>
license:        Apache-2.0
license-file:   LICENSE
build-type:     Simple

source-repository head
  type: git
  location: https://github.com/ethercrow/imgur

library
  exposed-modules:
      Imgur
  other-modules:
      Paths_imgur
  hs-source-dirs:
      src
  ghc-options: -Wall -ferror-spans
  build-depends:
      base >=4.9 && <5
    , data-default-class
    , http-client
    , req >=2.0
    , text
    , xml-conduit
    , xml-lens
  default-language: Haskell2010