gdritter repos tms / master tms.cabal
master

Tree @master (Download .tar.gz)

tms.cabal @masterraw · history · blame

name:             tms
version:          0.1.0.0
-- synopsis:
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <gdritter@galois.com>
maintainer:       Getty Ritter <gdritter@galois.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.14

library
  exposed-modules:     TMS
                     , TMS.Spec
  hs-source-dirs:      src
  build-depends:       base >=4.7 && <5
                     , adnot
                     , bytestring
                     , stache
                     , shake
                     , text
                     , containers
                     , telml
                     , telml-markup
  default-language:    Haskell2010
  default-extensions:  ScopedTypeVariables

executable tms
  hs-source-dirs:      tms
  main-is:             Main.hs
  default-extensions:  ScopedTypeVariables
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
                     , tms
  default-language:    Haskell2010