Constant project_init::includes::MISO_CABAL [] [src]

pub const MISO_CABAL: &'static str = "name:                {{ project }}\nversion:             0.1.0.0\n-- synopsis:\n-- description:\nhomepage:            https://github.com/vmchale/{{ project }}#readme\nlicense:             BSD3\nlicense-file:        LICENSE\nauthor:              Vanessa McHale\nmaintainer:          vanessa.mchale@reconfigure.io\ncopyright:           Copyright: (c) 2017 Vanessa McHale\n--category:            Web\nbuild-type:          Simple\nextra-source-files:  README.md\n                   , stack.yaml\n                   , .travis.yml\ncabal-version:       >=1.10\n\nFlag development {\n  Description: Enable `-Werror`\n  manual: True\n  default: False\n}\n\nlibrary\n  hs-source-dirs:      src\n  exposed-modules:     Lib\n  build-depends:       base >= 4.7 && < 5\n                     , miso == 0.9.*\n  default-language:    Haskell2010\n  if flag(development)\n    ghc-options: -Werror\n  ghc-options:         -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat\n\nexecutable {{ project }}\n  hs-source-dirs:      app\n  main-is:             Main.hs\n  ghc-options:         -threaded -rtsopts -with-rtsopts=-N\n  build-depends:       base\n                     , {{ project }}\n  default-language:    Haskell2010\n  if flag(development)\n    ghc-options: -Werror\n  ghc-options:         -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat\n\nsource-repository head\n  type:     git\n  location: https://github.com/vmchale/{{ project }}\n"