name: Villefort version: 0.1.0.2 x-revision: 2 synopsis: Villefort is a task manager and time tracker written in haskell. description: It is based off of a sqlite database and has the ability to add new tasks homepage: https://github.com/Chrisr850/Villefort#readme license: BSD3 license-file: LICENSE author: Chris Reuter maintainer: creuter@lsoc.org copyright: 2017 Chris Reuter category: Web build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Lib , Database , Todo , Stats build-depends: base < 0 , HDBC >= 2.4.0 && < 2.5 , HDBC-sqlite3 >= 2.3.3 && < 2.4 , split >= 0.2.3 && < 0.3 , time >= 1.6.0 && < 1.7 , FindBin >= 0.0.5 && < 0.1 , mtl >= 2.2.1 && < 2.3 default-language: Haskell2010 executable Villefort hs-source-dirs: app main-is: Main.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , Villefort , scotty >= 0.11.0 && < 0.12 , HDBC-sqlite3 , HDBC , split , text , time default-language: Haskell2010 test-suite Villefort-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , Villefort ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/Chrisr850/Villefort