cabal-version: 2.4 name: JuicyPixels-extra version: 0.6.0 license: BSD-3-Clause license-file: LICENSE.md maintainer: Mark Karpov author: Mark Karpov tested-with: ghc ==9.0.2 ghc ==9.2.4 ghc ==9.4.1 homepage: https://github.com/mrkkrp/JuicyPixels-extra bug-reports: https://github.com/mrkkrp/JuicyPixels-extra/issues synopsis: Efficiently scale, crop, flip images with JuicyPixels description: Efficiently scale, crop, flip images with JuicyPixels. category: Graphics, Image build-type: Simple data-files: data-examples/*.png extra-doc-files: CHANGELOG.md README.md source-repository head type: git location: https://github.com/mrkkrp/JuicyPixels-extra.git flag dev description: Turn on development settings. default: False manual: True library exposed-modules: Codec.Picture.Extra default-language: Haskell2010 build-depends: base >=4.15 && <5, JuicyPixels >=3.2.6.4 && <3.4 if flag(dev) ghc-options: -Wall -Werror else ghc-options: -O2 -Wall if flag(dev) ghc-options: -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wnoncanonical-monad-instances test-suite tests type: exitcode-stdio-1.0 main-is: Spec.hs build-tool-depends: hspec-discover:hspec-discover >=2.0 && <3.0 hs-source-dirs: tests other-modules: Codec.Picture.ExtraSpec default-language: Haskell2010 build-depends: base >=4.15 && <5, JuicyPixels >=3.2.6.4 && <3.4, JuicyPixels-extra, hspec >=2.0 if flag(dev) ghc-options: -Wall -Werror else ghc-options: -O2 -Wall benchmark bench type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: bench default-language: Haskell2010 build-depends: base >=4.15 && <5, JuicyPixels >=3.2.6.4 && <3.4, JuicyPixels-extra, criterion >=0.6.2.1 && <1.7 if flag(dev) ghc-options: -O2 -Wall -Werror else ghc-options: -O2 -Wall