packages feed

exiftool-0.1.1.0: exiftool.cabal

name:                 exiftool
version:              0.1.1.0
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-2021 Martin Hoppenheit
category:             Foreign
build-type:           Simple
extra-source-files:   README.md
                    , CHANGELOG.md
cabal-version:        >=1.10

library
  hs-source-dirs:     src
  exposed-modules:    ExifTool
  default-language:   Haskell2010
  ghc-options:        -Wall
  build-depends:      base                 >= 4.12 && < 5
                    , aeson                >= 1.5.4 && < 1.6
                    , base64               >= 0.4.2 && < 0.5
                    , bytestring           >= 0.10.8 && < 0.12
                    , hashable             >= 1.3.0 && < 1.4
                    , process              >= 1.6.5 && < 1.7
                    , scientific           >= 0.3.6 && < 0.4
                    , string-conversions   >= 0.4.0 && < 0.5
                    , temporary            >= 1.3 && < 1.4
                    , text                 >= 1.2.3 && < 1.3
                    , unordered-containers >= 0.2.12 && < 0.3
                    , vector               >= 0.12.1 && < 0.13

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