-
Notifications
You must be signed in to change notification settings - Fork 0
/
exiftool.cabal
36 lines (34 loc) · 1.52 KB
/
exiftool.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
cabal-version: 3.0
name: exiftool
version: 0.2.0.5
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: [email protected]
copyright: 2020-2024 Martin Hoppenheit
category: Foreign
extra-doc-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.3,
base64 >= 1.0 && < 1.1,
bytestring >= 0.10.8 && < 0.13,
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.2,
unordered-containers >= 0.2.12 && < 0.3,
vector >= 0.12.1 && < 0.14
source-repository head
type: git
location: https://github.com/marhop/exiftool-haskell