Hufflepdf/Hufflepdf.cabal

35 lines
1.0 KiB
Plaintext
Raw Normal View History

-- Initial Hufflepdf.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Hufflepdf
2019-05-31 15:16:23 +02:00
version: 0.1.1.1
synopsis: A PDF parser
-- description:
license: BSD3
license-file: LICENSE
author: Tissevert
maintainer: tissevert+devel@marvid.fr
-- copyright:
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: PDF
2019-05-18 11:09:03 +02:00
, PDF.EOL
2019-05-24 10:48:09 +02:00
, PDF.Object
2019-05-16 17:06:14 +02:00
, PDF.Output
2019-05-24 10:48:09 +02:00
other-modules: Data.ByteString.Char8.Util
, PDF.Body
, PDF.Parser
-- other-extensions:
2019-05-24 10:48:09 +02:00
build-depends: attoparsec
, base >=4.9 && <4.13
, bytestring
, containers
2019-05-16 17:06:14 +02:00
, mtl
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010