packages feed

STL 0.2 → 0.2.0.1

raw patch · 3 files changed

+21/−4 lines, 3 files

Files

+ CHANGES.md view
@@ -0,0 +1,3 @@+# 0.2.0.1++- Allow attoparsec 0.12.*
+ README.md view
@@ -0,0 +1,13 @@+STL is a simple file format for representing 3D objects as the+triangles which form their surface. It is common in 3D printing+workflows.++This Haskell library provides parsing and serialization to and from+both text and binary STL formats.++Documentation for the last release is+[on Hackage](http://hackage.haskell.org/package/STL).  The `examples`+directory contains a couple of simple command-line programs using the+library.++Bug reports, patches, and examples of use are welcome.
STL.cabal view
@@ -1,5 +1,5 @@ name:                STL-version:             0.2+version:             0.2.0.1 synopsis:            STL 3D geometry format parsing and pretty-printing description:         STL is a simple file format for representing 3D                      objects as the triangles which form their@@ -17,8 +17,9 @@ build-type:          Simple -- extra-source-files:   cabal-version:       >=1.10+Extra-source-files:  CHANGES.md, README.md bug-reports:         http://github.com/bergey/STL/issues-Tested-with:         GHC == 7.6.3, GHC == 7.8.1+Tested-with:         GHC == 7.6.3, GHC == 7.8.3 Source-repository head   type:     git   location: http://github.com/bergey/STL.git@@ -33,8 +34,8 @@   -- other-modules:          -- other-extensions:       build-depends:    base >=4.6 && <4.8,-                    attoparsec >= 0.11 && < 0.12,-                    text >= 1.0 && < 1.2,+                    attoparsec >= 0.11 && < 0.13,+                    text >= 0.11.1.5 && < 1.2,                     cereal >= 0.4 && < 0.5,                     bytestring >= 0.10 && < 0.11   hs-source-dirs:   src