packages feed

rob-0.0.5: rob.cabal

name:                rob
version:0.0.5
synopsis:            Simple projects generator
description:         See README at <https://github.com/GianlucaGuarini/rob/blob/develop/README.md>
homepage:            https://github.com/gianlucaguarini/rob#readme
license:             MIT
license-file:        LICENSE
author:              Gianluca Guarini
maintainer:          gianluca.guarini@gmail.com
copyright:           Gianluca Guarini
category:            CLI
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Rob.Config,
                       Rob.Types,
                       Rob.Project,
                       Rob.Tasks,
                       Rob.UserMessages,
                       Rob.Questionnaire,
                       Rob.Logger,
                       Rob.Package,
                       Rob.Actions.New,
                       Rob.Actions.Remove,
                       Rob.Actions.List,
                       Rob.Actions.Add
  build-depends:       base >= 4.7 && < 5,
                       fortytwo <= 1.0.5,
                       directory <= 1.3.6.1,
                       filepath <= 1.4.2.1,
                       pathwalk <= 0.3.1.2,
                       Glob <= 0.10.1,
                       yaml <= 0.11.5.0,
                       vector == 0.12.1.2,
                       ede == 0.3.2.0,
                       text <= 1.2.4.0,
                       unordered-containers <= 0.2.13.0,
                       cmdargs >= 0.10.17 && <= 0.10.20,
                       ansi-terminal <= 0.11,
                       bytestring <= 0.11.0.0,
                       time <= 1.11.1.1
  other-modules:       Paths_rob
  default-language:    Haskell2010

executable rob
  hs-source-dirs:      app
  main-is:             Main.hs
  build-depends:       base >= 4.7 && < 5,
                       cmdargs >= 0.10.17 && <= 0.10.20,
                       rob

  default-language:    Haskell2010

test-suite rob-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base >= 4.7 && < 5,
                       directory <= 1.3.6.1,
                       rob

  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/gianlucaguarini/rob