First useable version

This commit is contained in:
Tissevert 2019-05-18 11:09:03 +02:00
parent 2c165daaa7
commit b60f337cc4
3 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# Revision history for Hufflepdf # Revision history for Hufflepdf
## 0.1.0.0 -- YYYY-mm-dd ## 0.1.0.0 -- 2019-05-18
* First version. Released on an unsuspecting world. * First version. Released on an unsuspecting world.

View File

@ -17,12 +17,11 @@ cabal-version: >=1.10
library library
exposed-modules: PDF exposed-modules: PDF
, PDF.Body
, PDF.EOL
, PDF.Object , PDF.Object
other-modules: PDF.Body
, PDF.EOL
, PDF.Output , PDF.Output
, Data.ByteString.Lazy.Char8.Util , Data.ByteString.Lazy.Char8.Util
other-modules:
-- other-extensions: -- other-extensions:
build-depends: base >=4.9 && <4.13 build-depends: base >=4.9 && <4.13
, bytestring , bytestring

View File

@ -1,7 +1,6 @@
{-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE NamedFieldPuns #-}
module PDF ( module PDF (
Document(..) Document(..)
, DirectObject(..)
, parseDocument , parseDocument
, render , render
) where ) where