imageduplicates/imageduplicates.cabal

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-01-01 15:27:55 +02:00
-- Initial imageduplicates.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: imageduplicates
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable imageduplicates
main-is: Main.hs
2019-01-01 16:10:52 +02:00
ghc-options: -Wall -threaded -rtsopts -O2
2019-01-01 20:43:33 +02:00
other-modules: Data.BKTree
2019-01-01 15:27:55 +02:00
-- other-extensions:
build-depends: base >=4.11 && <4.12
2019-01-01 16:10:52 +02:00
, JuicyPixels
, JuicyPixels-extra
, bytestring
2019-01-01 20:43:33 +02:00
, either
2019-01-01 16:10:52 +02:00
, generic-lens
, lens
, mtl
, optparse-generic
, pipes
, pipes-files
, pipes-safe
2019-01-01 20:43:33 +02:00
, recursion-schemes
2019-01-01 16:10:52 +02:00
, text
, transformers
2019-01-01 23:31:16 +02:00
, directory
, filepath
2019-01-01 15:27:55 +02:00
hs-source-dirs: src
default-language: Haskell2010