packages feed

VRML-0.1.0.0: VRML.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 9f7a366a403e09e7f1211dbcf2e41b3610439f1b4ef03f7fc750431db2f80bf9

name:           VRML
version:        0.1.0.0
synopsis:       VRML parser and generator for Haskell
description:    Please see the README on GitHub at https://github.com/junjihashimoto/VRML#readme
category:       Graphics
homepage:       https://github.com/junjihashimoto/VRML#readme
bug-reports:    https://github.com/junjihashimoto/VRML/issues
author:         Junji Hashimoto
maintainer:     junji.hashimoto@gmail.com
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/junjihashimoto/VRML

library
  exposed-modules:
      Data.VRML
      Data.VRML.Nodes
      Data.VRML.Parser
      Data.VRML.Proto
      Data.VRML.Text
      Data.VRML.Types
  other-modules:
      Paths_VRML
  hs-source-dirs:
      src
  build-depends:
      aeson
    , base >=4.7 && <5
    , megaparsec
    , prettyprinter
    , text
  default-language: Haskell2010

executable vrml2haskell
  main-is: vrml2haskell.hs
  other-modules:
      Paths_VRML
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      VRML
    , aeson
    , base >=4.7 && <5
    , megaparsec
    , pretty-simple >=3.0.0.0
    , prettyprinter
    , text
  default-language: Haskell2010

executable vrmlfmt
  main-is: vrmlfmt.hs
  other-modules:
      Paths_VRML
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      VRML
    , aeson
    , base >=4.7 && <5
    , megaparsec
    , prettyprinter
    , text
  default-language: Haskell2010

executable vrmlproto2haskell
  main-is: vrmlproto2haskell.hs
  other-modules:
      Paths_VRML
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      VRML
    , aeson
    , base >=4.7 && <5
    , megaparsec
    , prettyprinter
    , text
  default-language: Haskell2010

test-suite doctest
  type: exitcode-stdio-1.0
  main-is: doctests.hs
  other-modules:
      Paths_VRML
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      VRML
    , aeson
    , base >=4.7 && <5
    , doctest
    , megaparsec
    , prettyprinter
    , text
  default-language: Haskell2010