pcd-loader-0.2.3.2: pcd-loader.cabal
name: pcd-loader
version: 0.2.3.2
synopsis: PCD file loader.
description: Parser for PCD (point cloud data) formats. See
<http://pointclouds.org/documentation/tutorials/pcd_file_format.php>
for more information.
license: BSD3
license-file: LICENSE
author: Anthony Cowley
maintainer: acowley@gmail.com
copyright: (c) Anthony Cowley 2012
category: Robotics,Graphics
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/acowley/pcd-loader.git
library
exposed-modules: PCD.Data, PCD.Header, PCD.Internal.Types,
PCD.Internal.StorableFieldType
ghc-options: -O2 -Wall
hs-source-dirs: src
build-depends: base >= 4.6 && < 5, text, mtl, lens, vector, bytestring,
attoparsec, binary, deepseq, linear
default-language: Haskell2010
executable pcd2bin
hs-source-dirs: src/executable
main-is: Main.hs
ghc-options: -O2 -Wall
build-depends: base >= 4.6 && < 5, pcd-loader
default-language: Haskell2010