name: pfm version: 0.1.0.0 synopsis: PFM image parsing library for Debevec's format. description: PFM image parsing library for Paul Debevec's format. . The website containing an explanation of the format can be found here . homepage: https://github.com/ymherklotz/pfm#readme license: BSD3 license-file: LICENSE author: Yann Herklotz Grave maintainer: yann [at] yannherklotzgrave [dot] com copyright: 2019 Yann Herklotz Grave category: Image build-type: Simple cabal-version: >=1.10 extra-source-files: README.md tested-with: GHC==8.6.3, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2 , GHC==7.10.3, GHC==7.8.4, GHC==7.6.3 source-repository head type: git location: git://github.com/ymherklotz/pfm.git library hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall -Werror exposed-modules: PFM , PFM.Vec build-depends: attoparsec , base >=4 && <5 , bytestring >=0.10 && <0.11 , text >=1.2 && <1.3 , binary >=0.8 && <0.9 , data-binary-ieee754 >=0.4 && <0.5 , vector >=0.12 && <0.13 default-extensions: OverloadedStrings executable readpfm hs-source-dirs: app main-is: Main.hs default-language: Haskell2010 build-depends: base >= 4 && < 5 , pfm >=0.1 && <0.2 , text >=1.2 && <1.3 , bytestring >=0.10 && <0.11 , criterion >=1.5 && <1.6 default-extensions: OverloadedStrings test-suite pfm-test default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Test.hs ghc-options: -Wall -Werror build-depends: base >=4.7 && <5 , pfm >=0.1 && <0.2 , tasty >=1.2 && <1.3 , tasty-hunit >=0.10 && <0.11 , tasty-quickcheck >=0.10 && <0.11 , bytestring >=0.10 && <0.11 default-extensions: OverloadedStrings