purr

password generation and secret sharing
Log | Files | Refs | README | LICENSE

Purr.cabal (1586B)


      1 cabal-version: 1.12
      2 
      3 name:           Purr
      4 version:        0.5.0
      5 description:    https://git.eversole.co/Purr
      6 author:         James Eversole
      7 maintainer:     james@eversole.co
      8 copyright:      James Eversole
      9 license:        ISC
     10 license-file:   LICENSE
     11 build-type:     Simple
     12 extra-source-files:
     13     README
     14     ChangeLog.md
     15 
     16 executable Purr
     17   main-is: Main.hs
     18   hs-source-dirs:
     19       src
     20   default-extensions:
     21       ConstraintKinds
     22       DeriveGeneric
     23       FlexibleContexts
     24       FlexibleInstances
     25       GeneralizedNewtypeDeriving
     26       OverloadedStrings
     27       ScopedTypeVariables
     28   ghc-options: -threaded -rtsopts -with-rtsopts=-N -optl-pthread -fPIC
     29   build-depends:
     30     base >=4.7
     31     , base64-bytestring >=1.2.0.0
     32     , blaze-html >=0.9.1.0
     33     , bytestring >=0.10.12.1
     34     , containers >=0.6.4.1
     35     , directory >=1.3.0.0
     36     , dotenv >=0.10.0.0
     37     , file-embed ==0.0.15.0
     38     , http-types >=0.12.3
     39     , iso8601-time >=0.1.5
     40     , mtl >=2.2.2
     41     , random >=1.2
     42     , saltine >=0.2.0.0
     43     , scotty >=0.12
     44     , shakespeare >=2.0.20
     45     , split >=0.2.3.4
     46     , sqlite-simple >=0.4.18.0
     47     , text >=1.2.5.0
     48     , time >=1.9
     49     , utf8-string ==1.0.2
     50     , wai-extra >=3.1.12.1
     51     , wai-middleware-static >=0.5
     52   other-modules:
     53     Core.Configuration
     54     Core.HTTP
     55     Core.SQLite
     56     Core.Templates
     57     Core.Types
     58     Feature.Generation.HTTP
     59     Feature.Generation.Links
     60     Feature.Generation.Passwords
     61     Feature.Generation.Shared
     62     Feature.Generation.Templates
     63     Feature.Sharing.HTTP
     64     Feature.Sharing.SQLite
     65     Feature.Sharing.Templates
     66   default-language: Haskell2010