hledger-time/hledger-time.cabal

76 lines
1.9 KiB
Plaintext

cabal-version: 2.4
name: hledger-time
version: 0.1.0.0
synopsis:
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: NONE
author: Mats Rauhala
maintainer: mats.rauhala@iki.fi
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: MyLib
Command
Hledger.Row
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.15.1.0
, attoparsec
, bytestring
, text
, optparse-applicative
, time
, conduit
, directory
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable hledger-time
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base ^>=4.15.1.0,
hledger-time
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall -threaded
test-suite hledger-time-test
default-language: Haskell2010
other-modules: Test.Hledger.Row
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.15.1.0
, hledger-time
, hspec
, hspec-hedgehog
, hedgehog
, time
, text
, bytestring
, hedgehog-corpus
, conduit
ghc-options: -Wall -threaded