packages feed

exiftool-0.2.0.2: exiftool.cabal

cabal-version:      3.0
name:               exiftool
version:            0.2.0.2
synopsis:           Haskell bindings to ExifTool
description:        Haskell bindings to the [ExifTool](https://exiftool.org)
                    command-line application that enable reading, writing and
                    deleting metadata in various file formats.
homepage:           https://github.com/marhop/exiftool-haskell
license:            MIT
license-file:       LICENSE
author:             Martin Hoppenheit
maintainer:         martin@hoppenheit.info
copyright:          2020-2022 Martin Hoppenheit
category:           Foreign
extra-source-files: README.md CHANGELOG.md

library
  hs-source-dirs:   lib
  exposed-modules:  ExifTool
  default-language: Haskell2010
  ghc-options:      -Wall
  build-depends:    base                 >= 4.12 && < 5,
                    aeson                >= 1.5.4 && < 2.2,
                    base64               >= 0.4.2 && < 0.5,
                    bytestring           >= 0.10.8 && < 0.12,
                    hashable             >= 1.3.0 && < 1.5,
                    process              >= 1.6.5 && < 1.7,
                    scientific           >= 0.3.6 && < 0.4,
                    temporary            >= 1.3 && < 1.4,
                    text                 >= 1.2.3 && < 2.1,
                    unordered-containers >= 0.2.12 && < 0.3,
                    vector               >= 0.12.1 && < 0.14,
                    witch                >= 1.0.0 && < 1.2

source-repository head
  type:               git
  location:           https://github.com/marhop/exiftool-haskell