packages feed

toodles-1.2.2: toodles.cabal

cabal-version: 1.12
name: toodles
version: 1.2.2
license: MIT
license-file: LICENSE
copyright: 2019 Avi Press
maintainer: mail@avi.press
author: Avi Press
homepage: https://github.com/aviaviavi/toodles#readme
bug-reports: https://github.com/aviaviavi/toodles/issues
synopsis: Manage the TODO entries in your code
description:
    Toodles scrapes your entire repository for TODO entries and organizes them so you can manage your project directly from the code. View, filter, sort, and edit your TODO\'s with an easy to use web application. When you make changes via toodles, the edits will be applied directly the TODO entries in your code. When you\'re done, commit and push your changes to share them with your team!
category: Project Management
build-type: Simple
data-files:
    web/js/app.js
    web/js/jquery-3.3.1.min.js
    web/js/vue.js
    web/html/index.html
    web/css/bulma.min.css
    web/css/font-awesome.min.css
    web/css/toodles.css
    web/fonts/fontawesome-webfont.woff
    web/fonts/fontawesome-webfont.woff2
    web/img/favicon.png
    verify.py
    toodles-license-public-key.pem
extra-source-files:
    README.md

source-repository head
    type: git
    location: https://github.com/aviaviavi/toodles

library
    exposed-modules:
        Parse
        Types
        Config
        ToodlesApi
        Server
        License
    hs-source-dirs: src
    other-modules:
        Paths_toodles
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat
    build-depends:
        MissingH >=1.4.0.1 && <1.5,
        RSA >=2.3.0 && <2.4,
        aeson ==1.3.1.1,
        base >=4.4.0 && <5,
        base64-bytestring ==1.0.0.1,
        blaze-html ==0.9.1.1,
        bytestring >=0.10.8.2 && <0.11,
        cmdargs ==0.10.20,
        directory ==1.3.1.5,
        extra ==1.6.13,
        megaparsec ==6.5.0,
        process >=1.6.3.0 && <1.7,
        regex-posix ==0.95.2,
        servant ==0.14.1,
        servant-blaze ==0.8,
        servant-server ==0.14.1,
        strict ==0.3.2,
        text ==1.2.3.1,
        time >=1.8.0.2 && <1.9,
        wai ==3.2.1.2,
        warp ==3.2.25,
        yaml ==0.8.32

executable toodles
    main-is: Main.hs
    hs-source-dirs: app src
    other-modules:
        Config
        License
        Parse
        Server
        ToodlesApi
        Types
        Paths_toodles
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat -threaded -rtsopts -O3 -Wall
                 -with-rtsopts=-N
    build-depends:
        MissingH >=1.4.0.1 && <1.5,
        RSA >=2.3.0 && <2.4,
        aeson ==1.3.1.1,
        base >=4.4.0 && <5,
        base64-bytestring ==1.0.0.1,
        blaze-html ==0.9.1.1,
        bytestring >=0.10.8.2 && <0.11,
        cmdargs ==0.10.20,
        directory ==1.3.1.5,
        extra ==1.6.13,
        filepath ==1.4.2,
        megaparsec ==6.5.0,
        process >=1.6.3.0 && <1.7,
        regex-posix ==0.95.2,
        servant ==0.14.1,
        servant-blaze ==0.8,
        servant-server ==0.14.1,
        strict ==0.3.2,
        text ==1.2.3.1,
        time >=1.8.0.2 && <1.9,
        wai ==3.2.1.2,
        warp ==3.2.25,
        yaml ==0.8.32

test-suite toodles-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test src
    other-modules:
        Config
        License
        Parse
        Server
        ToodlesApi
        Types
        Paths_toodles
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat -threaded -rtsopts -with-rtsopts=-N -w
    build-depends:
        MissingH >=1.4.0.1 && <1.5,
        aeson ==1.3.1.1,
        base >=4.4.0 && <5,
        base64-bytestring ==1.0.0.1,
        blaze-html ==0.9.1.1,
        bytestring >=0.10.8.2 && <0.11,
        cmdargs ==0.10.20,
        directory ==1.3.1.5,
        extra ==1.6.13,
        hspec >=2.4.4 && <2.6,
        hspec-expectations >=0.8.2 && <0.9,
        megaparsec ==6.5.0,
        process >=1.6.3.0 && <1.7,
        regex-posix ==0.95.2,
        servant ==0.14.1,
        servant-blaze ==0.8,
        servant-server ==0.14.1,
        strict ==0.3.2,
        text ==1.2.3.1,
        time >=1.8.0.2 && <1.9,
        toodles -any,
        wai ==3.2.1.2,
        warp ==3.2.25,
        yaml ==0.8.32